1234567891011121314 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(Job))]
- public class JobScopeStatus : Entity, IRemotable, IPersistent, IJobScopeStatus, ILicense<ProjectManagementLicense>
- {
- [TextBoxEditor(Visible = Visible.Default)]
- public string Description { get; set; }
- [CheckBoxEditor(Visible = Visible.Optional)]
- public bool Approved { get; set; }
- }
- }
|