From 830442dfe15d2e348baa8a28a43f741d71685bbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=9F=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=D0=BF=D0=BE=D0=B2?= Date: Tue, 19 Nov 2024 21:40:12 +0400 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=BB=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B4=D1=83=D0=BA?= =?UTF-8?q?=D1=82=D0=BE=D0=B2=20=D0=B2=20=D0=B8=D0=BD=D1=82=D0=B5=D1=80?= =?UTF-8?q?=D1=84=D0=B5=D0=B9=D1=81=D0=B5=20=D0=BC=D0=BE=D0=B4=D0=B5=D0=BB?= =?UTF-8?q?=D0=B8=20=D0=B7=D0=B0=D0=BA=D0=B0=D0=B7=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- InternetShop/InternetShopDataModels/Models/IOrderModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternetShop/InternetShopDataModels/Models/IOrderModel.cs b/InternetShop/InternetShopDataModels/Models/IOrderModel.cs index 1c0645c..c2eec39 100644 --- a/InternetShop/InternetShopDataModels/Models/IOrderModel.cs +++ b/InternetShop/InternetShopDataModels/Models/IOrderModel.cs @@ -5,6 +5,6 @@ string CustomerFIO { get; } string CustomerEmail { get; } string ImagePath { get; } - List Products { get; } + List ProductNames { get; } } }