using System; using System.Collections.Generic; namespace ShoeShopMvc.Models; public partial class Order { public string OrdersId { get; set; } = null!; public string OrdersDate { get; set; } = null!; public DateTime DeliveryDate { get; set; } public string AddressPickpoints { get; set; } = null!; public string ClientId { get; set; } = null!; public int Cod { get; set; } public string StatusId { get; set; } = null!; }