From 97138f65127b8b9e9aa7a4d811d9d54e02bbcc9f Mon Sep 17 00:00:00 2001 From: "kagbie3nn@mail.ru" Date: Sun, 16 Jun 2024 11:35:18 +0400 Subject: [PATCH] 8 --- .../BindingModels/MessageInfoBindingModel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ComputersShop/ComputersShopContracts/BindingModels/MessageInfoBindingModel.cs b/ComputersShop/ComputersShopContracts/BindingModels/MessageInfoBindingModel.cs index 2966e42..f7cd9a0 100644 --- a/ComputersShop/ComputersShopContracts/BindingModels/MessageInfoBindingModel.cs +++ b/ComputersShop/ComputersShopContracts/BindingModels/MessageInfoBindingModel.cs @@ -20,5 +20,6 @@ namespace ComputersShopContracts.BindingModels public string Body { get; set; } = string.Empty; public DateTime DateDelivery { get; set; } + public int Id => throw new NotImplementedException(); } }