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