using ElectronicsShopDataModels.Enums; using ElectronicsShopDataModels.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ElectronicsShopContracts.BindingModels { public class ReportBindingModel { public int? ID { get; set; } public int? ClientID { get; set; } public string? ProductName { get; set; } = string.Empty; public double? ProductPrice { get; set; } public PaymeantOption Status { get; set; } = PaymeantOption.Неоплачено; public DateTime? DateStart { get; set; } public DateTime? DateFinish { get; set; } public Dictionary PaymeantProduct { get; set; } = new(); } }