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