32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
|
|
using DurnyklyYol.Module.BusinessObjects;
|
|||
|
|
|
|||
|
|
namespace DurnyklyYol.Blazor.Server.DTO
|
|||
|
|
{
|
|||
|
|
public class GoodsDto
|
|||
|
|
{
|
|||
|
|
public Guid Oid { get; set; }
|
|||
|
|
public Guid ClientId { get; set; }
|
|||
|
|
public Guid CargoId { get; set; }
|
|||
|
|
public GoodsState State { get; set; }
|
|||
|
|
public CargoState CargoState { get; set; }
|
|||
|
|
public string No { get; set; }
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public string ShopNo { get; set; }
|
|||
|
|
public double Volume { get; set; }
|
|||
|
|
public uint PlacesCount { get; set; }
|
|||
|
|
public string Carrier { get; set; }
|
|||
|
|
public string From { get; set; }
|
|||
|
|
public string To { get; set; }
|
|||
|
|
public DateTime? DepartedAt { get; set; }
|
|||
|
|
public uint Depth { get; set; }
|
|||
|
|
public uint Width { get; set; }
|
|||
|
|
public uint Height { get; set; }
|
|||
|
|
public decimal Price { get; set; }
|
|||
|
|
|
|||
|
|
public string Image1 { get; set; }
|
|||
|
|
public string Image2 { get; set; }
|
|||
|
|
public string Image3 { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|