Sic.Framework/MECF.Framework.Common/Aitex/Core/Utilities/TagAttribute.cs

16 lines
252 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System;
namespace Aitex.Core.Utilities
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class TagAttribute : Attribute
{
public readonly string Tag;
public TagAttribute(string tag)
{
Tag = tag;
}
}
}