using InABox.Core; namespace Comal.Classes { public interface IProductStyle : IEntity { string Code { get; set; } string Description { get; set; } } }