Files
mixtape/zero.Core/old/Attributes/LocalizeAttribute.cs
T
2021-11-19 14:59:24 +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;
}
}
}