DataModelTemplate.cs 606 B

1234567891011121314151617181920212223
  1. namespace InABox.Core
  2. {
  3. public class DataModelTemplate : Entity, IRemotable, IPersistent, ISequenceable, ILicense<CoreLicense>
  4. {
  5. [TextBoxEditor(Visible = Core.Visible.Hidden, Editable = Editable.Hidden)]
  6. public string Model { get; set; }
  7. [TextBoxEditor]
  8. public string Name { get; set; }
  9. [NullEditor]
  10. public string Template { get; set; }
  11. [CheckBoxEditor]
  12. public bool Visible { get; set; }
  13. [CheckBoxEditor]
  14. public bool Default { get; set; }
  15. [NullEditor]
  16. public long Sequence { get; set; }
  17. }
  18. }