mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
9 lines
307 B
C#
9 lines
307 B
C#
using EggLink.DanhengServer.Enums.Language;
|
|
|
|
namespace EggLink.DanhengServer.Internationalization;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class PluginLanguageAttribute(ProgramLanguageTypeEnum languageType) : Attribute
|
|
{
|
|
public ProgramLanguageTypeEnum LanguageType { get; } = languageType;
|
|
} |