| 1234567891011121314151617181920212223 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public class Scan : Entity, IRemotable, IPersistent
- {
- public DocumentLink Document { get; set; }
- [ComboLookupEditor(typeof(PropertyClassLookups))]
- public string AppliesTo { get; set; }
- protected override void Init()
- {
- base.Init();
- Document = new DocumentLink();
- AppliesTo = "";
- }
- }
- }
|