14 lines
446 B
C#
14 lines
446 B
C#
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;
|
|
}
|
|
}
|
|
}
|