IJobStatus.cs 183 B

123456789
  1. namespace Comal.Classes
  2. {
  3. public interface IJobStatus
  4. {
  5. string Code { get; set; }
  6. string Description { get; set; }
  7. bool Active { get; set; }
  8. }
  9. }