Added endpoint handling there

This commit is contained in:
2021-10-25 14:43:56 -04:00
parent e2238ae982
commit 58881e5ad6
4 changed files with 64 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
using System;
namespace TOOHUCardAPI.Data
{
[AttributeUsage(AttributeTargets.Method)]
public class EndpointHandlerAttribute : System.Attribute
{
public string Method;
public EndpointHandlerAttribute(string method)
{
Method = method;
}
}
}