13 lines
309 B
C#
13 lines
309 B
C#
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;
|
|
}
|
|
}
|
|
}
|