You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
394 B
C#
14 lines
394 B
C#
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; }
|
|
}
|
|
}
|