JobScopeStatus.cs 409 B

1234567891011121314
  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. public string Description { get; set; }
  9. [CheckBoxEditor(Visible = Visible.Optional)]
  10. public bool Approved { get; set; }
  11. }
  12. }