mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-06 02:07:27 +08:00
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;
|
|
}
|