9 lines
164 B
C#
9 lines
164 B
C#
namespace TransportCompanyDataModels.Models
|
|
{
|
|
public interface ICargoModel : IId
|
|
{
|
|
string CargoName { get; }
|
|
int Weight { get; }
|
|
}
|
|
}
|