mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-06 10:57:27 +08:00
9 lines
191 B
C#
9 lines
191 B
C#
namespace AquaMai.Config.Interfaces;
|
|
|
|
public interface IConfigComment
|
|
{
|
|
string CommentEn { get; init; }
|
|
string CommentZh { get; init; }
|
|
public string GetLocalized(string lang);
|
|
}
|