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