Files
nadekobot/NadekoBot.Core/Common/Yml/CommentAttribute.cs
2021-09-06 21:29:22 +02:00

14 lines
249 B
C#

using System;
namespace NadekoBot.Common.Yml
{
public class CommentAttribute : Attribute
{
public string Comment { get; }
public CommentAttribute(string comment)
{
Comment = comment;
}
}
}