15 lines
300 B
C#
15 lines
300 B
C#
using System;
|
|
|
|
namespace TOOHUCardAPI.Data
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class EndpointHandlerAttribute : System.Attribute
|
|
{
|
|
public string Method;
|
|
|
|
public EndpointHandlerAttribute(string method)
|
|
{
|
|
Method = method;
|
|
}
|
|
}
|
|
} |