Deletion.cs 745 B

1234567891011121314151617181920212223242526
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace InABox.Core
  8. {
  9. // A Deletion is not IRemotable; *no one* but the database should know about it.
  10. public class Deletion : Entity, ILicense<CoreLicense>, IPersistent
  11. {
  12. [DateTimeEditor(Editable = Editable.Disabled)]
  13. public DateTime DeletionDate { get; set; }
  14. [TextBoxEditor(Editable = Editable.Disabled)]
  15. public string DeletedBy { get; set; }
  16. [TextBoxEditor(Editable = Editable.Disabled)]
  17. public string HeadTable { get; set; }
  18. [TextBoxEditor(Editable = Editable.Disabled)]
  19. public string Description { get; set; }
  20. }
  21. }