Scan.cs 366 B

12345678910111213141516171819
  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. protected override void Init()
  11. {
  12. base.Init();
  13. Document = new DocumentLink();
  14. }
  15. }
  16. }