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