using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class DrawingTemplate : Entity, IPersistent, IRemotable, ILicense { [EditorSequence(1)] [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)] public string Code { get; set; } [EditorSequence(2)] public string Description { get; set; } [EditorSequence(3)] public DocumentLink Document { get; set; } protected override void Init() { Code = ""; Description = ""; Document = new DocumentLink(); base.Init(); } } }