Scan.cs 499 B

1234567891011121314151617181920212223
  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
  8. {
  9. public DocumentLink Document { get; set; }
  10. [ComboLookupEditor(typeof(PropertyClassLookups))]
  11. public string AppliesTo { get; set; }
  12. protected override void Init()
  13. {
  14. base.Init();
  15. Document = new DocumentLink();
  16. AppliesTo = "";
  17. }
  18. }
  19. }