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