Infrastructure/Utils.Web/Attrs/AllDataAttribute.cs

20 lines
482 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Utils.Web.Attrs
{
public class AllDataAttribute : Attribute
{
public AllDataAttribute(string controllerName, string actionName)
{
ControllerName = controllerName;
ActionName = actionName;
}
public string ControllerName { get; set; }
public string ActionName { get; set; }
}
}