mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
14 lines
249 B
C#
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;
|
|
}
|
|
}
|
|
} |