forked from Cookies_Github_mirror/AquaDX
11 lines
267 B
C#
11 lines
267 B
C#
using System;
|
|
|
|
namespace AquaMai.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class ConfigCommentAttribute(string en = null, string zh = null) : Attribute
|
|
{
|
|
public string CommentEn { get; } = en;
|
|
public string CommentZh { get; } = zh;
|
|
}
|