DataEntryDocument.cs 796 B

1234567891011121314151617181920212223242526272829303132
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. public class DataEntryDocument : Entity, IRemotable, IPersistent, ILicense<DataEntryLicense>
  8. {
  9. [EditorSequence(1)]
  10. public DocumentLink Document { get; set; }
  11. [EditorSequence(2)]
  12. public DataEntryTagLink Tag { get; set; }
  13. [EditorSequence(3)]
  14. public EmployeeLink Employee { get; set; }
  15. [EditorSequence(4)]
  16. [MemoEditor]
  17. public string Note { get; set; }
  18. [NullEditor]
  19. public Guid EntityID { get; set; }
  20. [NullEditor]
  21. public DateTime Archived { get; set; } = DateTime.MinValue;
  22. [NullEditor]
  23. public byte[]? Thumbnail { get; set; }
  24. }
  25. }