From 546ac8068e541d7547053985db4818acb9d35991 Mon Sep 17 00:00:00 2001 From: ngfrolov Date: Thu, 2 Mar 2023 14:31:17 +0500 Subject: [PATCH] =?UTF-8?q?Fix.=20=D0=9E=D1=88=D0=B8=D0=B1=D0=BA=D0=B0=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B8=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B8=20=D1=81=D0=BA=D0=B2=D0=B0=D0=B6=D0=B8=D0=BD?= =?UTF-8?q?=D1=8B.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AsbCloudApp/Data/WellDto.cs | 2 +- AsbCloudApp/Data/WellInfoDto.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AsbCloudApp/Data/WellDto.cs b/AsbCloudApp/Data/WellDto.cs index b5b1ac64..ec1d4540 100644 --- a/AsbCloudApp/Data/WellDto.cs +++ b/AsbCloudApp/Data/WellDto.cs @@ -23,7 +23,7 @@ namespace AsbCloudApp.Data /// /// Название типа скважины /// - public string WellType { get; set; } = null!; + public string? WellType { get; set; } /// /// ID типа скважины diff --git a/AsbCloudApp/Data/WellInfoDto.cs b/AsbCloudApp/Data/WellInfoDto.cs index bb1128b2..b42d90b4 100644 --- a/AsbCloudApp/Data/WellInfoDto.cs +++ b/AsbCloudApp/Data/WellInfoDto.cs @@ -19,11 +19,11 @@ namespace AsbCloudApp.Data /// /// Название куста /// - public string Cluster { get; set; } = null!; + public string? Cluster { get; set; } /// /// Название месторождения /// - public string Deposit { get; set; } = null!; + public string? Deposit { get; set; } } } \ No newline at end of file