13 lines
253 B
C#
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;
|
|
}
|
|
}
|