2026-04-07 14:23:29 +02:00
|
|
|
namespace Finch.Localization;
|
2022-12-07 14:05:11 +01:00
|
|
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Field, AllowMultiple = false)]
|
|
|
|
|
public class LocalizeAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
public string Key;
|
|
|
|
|
|
|
|
|
|
public LocalizeAttribute(string key)
|
|
|
|
|
{
|
|
|
|
|
Key = key;
|
|
|
|
|
}
|
|
|
|
|
}
|