Fix. Ошибка при добавлении скважины.

This commit is contained in:
ngfrolov 2023-03-02 14:31:17 +05:00
parent 1c21d9abae
commit 546ac8068e
Signed by untrusted user who does not match committer: ng.frolov
GPG Key ID: E99907A0357B29A7
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ namespace AsbCloudApp.Data
/// <summary>
/// Название типа скважины
/// </summary>
public string WellType { get; set; } = null!;
public string? WellType { get; set; }
/// <summary>
/// ID типа скважины

View File

@ -19,11 +19,11 @@ namespace AsbCloudApp.Data
/// <summary>
/// Название куста
/// </summary>
public string Cluster { get; set; } = null!;
public string? Cluster { get; set; }
/// <summary>
/// Название месторождения
/// </summary>
public string Deposit { get; set; } = null!;
public string? Deposit { get; set; }
}
}