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

32 lines
1.0 KiB
C#
Raw Normal View History

2024-09-02 10:07:25 +00:00
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; }
2024-09-26 06:06:05 +00:00
public decimal Volume { get; set; }
2024-09-02 10:07:25 +00:00
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; }
2024-09-26 06:06:05 +00:00
//public uint Depth { get; set; }
//public uint Width { get; set; }
//public uint Height { get; set; }
2024-09-02 10:07:25 +00:00
public decimal Price { get; set; }
2024-09-26 06:06:05 +00:00
public string Invoice { get; set; }
public string Image { get; set; }
//public string Image3 { get; set; }
2024-09-02 10:07:25 +00:00
}
}