More changes to the endpoint auto setup

This commit is contained in:
2021-10-25 16:10:41 -04:00
parent 58881e5ad6
commit ab8937f7cd
4 changed files with 75 additions and 33 deletions

View File

@@ -0,0 +1,11 @@
using System.Text.Json.Serialization;
using Newtonsoft.Json;
namespace TOOHUCardAPI.Models
{
public interface IMethodBasedRequest
{
[JsonPropertyName("method")]
public string Method { get; }
}
}