14 lines
438 B
C#
Raw Normal View History

2024-11-27 23:43:53 +04:00
using DataModels;
namespace Contracts.ViewModels
{
public class OrderViewModel : IOrderModel
{
public int Id { get; set; }
public string FIO { get; set; } = string.Empty;
public string[] OrderPath { get; set; } = new string[0];
public string OrderDestination { get; set; } = string.Empty;
2024-12-13 00:01:45 +03:00
public DateOnly OrderDeliveryTime { get; set; } = DateOnly.FromDateTime(DateTime.Today);
2024-11-27 23:43:53 +04:00
}
}