IJobScopeStatus.cs 187 B

1234567891011
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface IJobScopeStatus : IEntity
  5. {
  6. string Description { get; set; }
  7. bool Approved { get; set; }
  8. }
  9. }