using InABox.Core; namespace Comal.Classes { public interface IQuoteContract : IEntity { QuoteLink Quote { get; set; } string Description { get; set; } double ExTax { get; set; } double Tax { get; set; } double IncTax { get; set; } } }