2024-12-13 00:01:45 +03:00

12 lines
306 B
C#

namespace DataModels
{
public interface IOrderModel
{
public int Id { get; set; }
public string FIO { get; set; }
public string[] OrderPath { get; set; }
public string OrderDestination { get; set; }
public DateOnly OrderDeliveryTime { get; set; }
}
}