Infrastructure/Utils.Web/Attrs/AllDataAttribute.cs

20 lines
482 B
C#
Raw Normal View History

2025-05-13 15:18:14 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Utils.Web.Attrs
2024-11-13 09:19:06 +08:00
{
public class AllDataAttribute : Attribute
{
public AllDataAttribute(string controllerName, string actionName)
{
ControllerName = controllerName;
ActionName = actionName;
}
public string ControllerName { get; set; }
2025-05-13 15:18:14 +08:00
public string ActionName { get; set; }
2024-11-13 09:19:06 +08:00
}
}