From 4b78a089b354609cdca08c9b5cc9313819562efc Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Sat, 6 Apr 2024 20:04:29 +0400 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=BE=20=D0=BF=D0=BE=D0=BB=D0=B5=20Id=20=D0=B2=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=B8=D1=81=D0=BA=D0=BE=D0=B2=D0=BE=D0=B9=20=D0=BC=D0=BE=D0=B4?= =?UTF-8?q?=D0=B5=D0=BB=D0=B8=20=D0=B4=D0=BB=D1=8F=20=D0=BA=D0=BB=D0=B8?= =?UTF-8?q?=D0=B5=D0=BD=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SecuritySystemContracts/SearchModels/ClientSearchModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SecuritySystem/SecuritySystemContracts/SearchModels/ClientSearchModel.cs b/SecuritySystem/SecuritySystemContracts/SearchModels/ClientSearchModel.cs index 11535ba..98a9996 100644 --- a/SecuritySystem/SecuritySystemContracts/SearchModels/ClientSearchModel.cs +++ b/SecuritySystem/SecuritySystemContracts/SearchModels/ClientSearchModel.cs @@ -2,7 +2,7 @@ { public class ClientSearchModel { - public int Id { get; set; } + public int? Id { get; set; } public string? ClientFIO { get; set; } public string? Email { get; set; } }