Caption.cs 294 B

1234567891011121314151617
  1. using System;
  2. namespace InABox.Core
  3. {
  4. public class Caption : Attribute
  5. {
  6. public Caption(string text)
  7. {
  8. Text = text;
  9. IncludePath = true;
  10. }
  11. public string Text { get; set; }
  12. public bool IncludePath { get; set; }
  13. }
  14. }