CommentAttribute.cs 299 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace InABox.Core
  5. {
  6. public class CommentAttribute : Attribute
  7. {
  8. public string Comment { get; set; }
  9. public CommentAttribute(string comment)
  10. {
  11. Comment = comment;
  12. }
  13. }
  14. }