Files
2023-11-06 19:35:59 +08:00

12 lines
283 B
C#

namespace Tnb.WarehouseMgr.Entities.Attributes
{
/// <summary>
///定时任务特性
/// </summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class TimedAttribute : Attribute
{
public string Name { get; set; }
}
}