Files
moadiran/Back/Common/ExclusiveAttribute.cs

14 lines
446 B
C#
Raw Permalink Normal View History

2024-03-30 15:10:36 +03:30
namespace Back.Common
{
public class ExclusiveAttribute
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Method | AttributeTargets.Class,
AllowMultiple = false)]
public class ColorAttribute : Attribute
{
public string _ColorHex;
public ColorAttribute(string ColorHex) => _ColorHex = ColorHex;
}
}
}