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