DurnyklyYol/DurnyklyYol.Blazor.Server/DTO/GoodsListDto.cs

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 decimal 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 Invoice { get; set; }
public string Image { get; set; }
//public string Image3 { get; set; }
}
}