12 lines
298 B
C#
12 lines
298 B
C#
|
using TransportCompanyDataModels.Models;
|
|||
|
|
|||
|
namespace TransportCompanyContracts.BindingModels
|
|||
|
{
|
|||
|
public class CargoBindingModel : ICargoModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string CargoName { get; set; } = string.Empty;
|
|||
|
public int Weight { get; set; }
|
|||
|
}
|
|||
|
}
|