LASAPlatform/OpenAuth.WebApi/Model/CustomAttribute/AllDataAttribute.cs

14 lines
394 B
C#
Raw Normal View History

2025-04-23 09:19:29 +08:00
namespace OpenAuth.WebApi.Model.CustomAttribute
{
public class AllDataAttribute : Attribute
{
public AllDataAttribute(string controllerName, string actionName)
{
ControllerName = controllerName;
ActionName = actionName;
}
public string ControllerName { get; set; }
public string ActionName { get; set; }
}
}