forked from ddrilling/AsbCloudServer
fix nullable
This commit is contained in:
parent
ad5ac00079
commit
bc35e18703
@ -11,7 +11,7 @@
|
||||
/// <summary>
|
||||
/// Название
|
||||
/// </summary>
|
||||
public string Caption { get; set; } = string.Empty;
|
||||
public string Caption { get; set; } = null!;
|
||||
|
||||
/// <inheritdoc/>
|
||||
public double? Latitude { get; set; }
|
||||
|
@ -28,7 +28,7 @@ namespace AsbCloudApp.Data
|
||||
/// <summary>
|
||||
/// пользователь панели оператора
|
||||
/// </summary>
|
||||
public string User { get; set; } = null!;
|
||||
public string? User { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// текст сообщения
|
||||
|
Loading…
Reference in New Issue
Block a user