using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class Scan : Entity, IRemotable, IPersistent, ILicense { [CheckBoxEditor] public bool Processed { get; set; } public DocumentLink Document { get; set; } public ScanTagLink Tag { get; set; } protected override void Init() { base.Init(); Processed = false; Document = new DocumentLink(); Tag = new ScanTagLink(); } } }