using InABox.Core; namespace Comal.Classes { public interface IJobScopeStatus : IEntity { string Description { get; set; } bool Approved { get; set; } } }