using System; using System.Collections.Generic; using System.Text; namespace InABox.Core { public class CommentAttribute : Attribute { public string Comment { get; set; } public CommentAttribute(string comment) { Comment = comment; } } }