mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 15:03:57 +00:00
9 lines
277 B
C#
9 lines
277 B
C#
using MikuSB.Enums.Language;
|
|
|
|
namespace MikuSB.Internationalization;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class PluginLanguageAttribute(ProgramLanguageTypeEnum languageType) : Attribute
|
|
{
|
|
public ProgramLanguageTypeEnum LanguageType { get; } = languageType;
|
|
} |