| 1234567891011121314151617181920212223242526272829 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class JobScopeLink : EntityLink<JobScope>
- {
-
- public JobScopeLink() : this(null)
- {
- }
- public JobScopeLink(Func<BaseObject>? entity) : base(entity)
- {
- }
-
- [LookupEditor(typeof(JobScope))]
- [EditorSequence(1)]
- public override Guid ID { get; set; }
-
- [CodeEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- [EditorSequence(2)]
- public string Number { get; set; }
- [EditorSequence(1)]
- [MemoEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- public string Description { get; set; }
- }
- }
|