Files
mixtape/zero.Core/Localization/LocalizeAttribute.cs
T
2021-11-20 13:52:28 +01:00

13 lines
253 B
C#

namespace zero.Localization;
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Field, AllowMultiple = false)]
public class LocalizeAttribute : Attribute
{
public string Key;
public LocalizeAttribute(string key)
{
Key = key;
}
}