11 lines
223 B
C#
11 lines
223 B
C#
using System.Text.Json.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace TOOHUCardAPI.Models
|
|
{
|
|
public interface IMethodBasedRequest
|
|
{
|
|
[JsonPropertyName("method")]
|
|
public string Method { get; }
|
|
}
|
|
} |