namespace TransportCompanyDataModels.Models { public interface ICargoModel : IId { string Name { get; } int Weight { get; } } }