AquaDX/AquaMai/AquaMai.Config.Interfaces/IConfigComment.cs

9 lines
191 B
C#
Raw Normal View History

2024-11-26 00:03:35 +08:00
namespace AquaMai.Config.Interfaces;
public interface IConfigComment
{
string CommentEn { get; init; }
string CommentZh { get; init; }
public string GetLocalized(string lang);
}