DataEntryDocument.cs 705 B

12345678910111213141516171819202122232425262728
  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. [NullEditor]
  16. public Guid EntityID { get; set; }
  17. [NullEditor]
  18. public DateTime Archived { get; set; } = DateTime.MinValue;
  19. [NullEditor]
  20. public byte[]? Thumbnail { get; set; }
  21. }
  22. }