Files
mixtape/zero.Core/Attributes/LocalizeAttribute.cs
T
2020-12-18 20:50:13 +01:00

16 lines
291 B
C#

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