JobScopeLink.cs 724 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class JobScopeLink : EntityLink<JobScope>
  6. {
  7. public JobScopeLink() : this(null)
  8. {
  9. }
  10. public JobScopeLink(Func<BaseObject>? entity) : base(entity)
  11. {
  12. }
  13. [LookupEditor(typeof(JobScope))]
  14. [EditorSequence(1)]
  15. public override Guid ID { get; set; }
  16. [CodeEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
  17. [EditorSequence(2)]
  18. public string Number { get; set; }
  19. [EditorSequence(1)]
  20. [MemoEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
  21. public string Description { get; set; }
  22. }
  23. }