Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Attributes/CallerAttribute.cs
2023-06-19 15:01:37 +08:00

19 lines
426 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Attributes
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class CallerAttribute : Attribute
{
public string Name { get; set; }
public CallerAttribute(string name)
{
Name = name;
}
}
}