Scan.cs 585 B

123456789101112131415161718192021222324252627
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. public class Scan : Entity, IRemotable, IPersistent, ILicense<DocumentScannerLicense>
  8. {
  9. [CheckBoxEditor]
  10. public bool Processed { get; set; }
  11. public DocumentLink Document { get; set; }
  12. public ScanTagLink Tag { get; set; }
  13. protected override void Init()
  14. {
  15. base.Init();
  16. Processed = false;
  17. Document = new DocumentLink();
  18. Tag = new ScanTagLink();
  19. }
  20. }
  21. }