JobScopeStatus.cs 905 B

1234567891011121314151617181920212223242526272829
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Job))]
  5. public class JobScopeStatus : Entity, IRemotable, IPersistent, IJobScopeStatus, ILicense<ProjectManagementLicense>
  6. {
  7. [TextBoxEditor(Visible = Visible.Default)]
  8. [EditorSequence(1)]
  9. public string Description { get; set; }
  10. [CheckBoxEditor(Visible = Visible.Optional)]
  11. [EditorSequence(2)]
  12. public bool Approved { get; set; }
  13. [CheckBoxEditor(Visible = Visible.Optional)]
  14. [EditorSequence(3)]
  15. public bool ContractDefault { get; set; }
  16. [CheckBoxEditor(Visible = Visible.Optional)]
  17. [EditorSequence(4)]
  18. public bool VariationDefault { get; set; }
  19. [CheckBoxEditor(Visible = Visible.Optional)]
  20. [EditorSequence(5)]
  21. public bool AdjustmentDefault { get; set; }
  22. }
  23. }