namespace Comal.Classes { public interface IJobStatus { string Code { get; set; } string Description { get; set; } bool Active { get; set; } } }