using System; namespace TOOHUCardAPI.Data { [AttributeUsage(AttributeTargets.Method)] public class EndpointHandlerAttribute : System.Attribute { public string Method; public EndpointHandlerAttribute(string method) { Method = method; } } }