Nullverweise warnings bereinigt
This commit is contained in:
@@ -28,7 +28,7 @@ namespace ConsoleApp3.DataContracts
|
||||
/// <value>sevClient is the unique id every customer has and is used in nearly all operations</value>
|
||||
[DataMember(Name = "sevClient", EmitDefaultValue = false)]
|
||||
[JsonProperty(PropertyName = "sevClient")]
|
||||
public Object SevClient { get; set; }
|
||||
public Object? SevClient { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
@@ -36,7 +36,7 @@ namespace ConsoleApp3.DataContracts
|
||||
/// <value></value>
|
||||
[DataMember(Name = "name", EmitDefaultValue = false)]
|
||||
[JsonProperty(PropertyName = "name")]
|
||||
public string Name { get; set; }
|
||||
public string Name { get; set; } = "";
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
@@ -44,7 +44,7 @@ namespace ConsoleApp3.DataContracts
|
||||
/// <value></value>
|
||||
[DataMember(Name = "text", EmitDefaultValue = false)]
|
||||
[JsonProperty(PropertyName = "text")]
|
||||
public string Text { get; set; }
|
||||
public string Text { get; set; } = "";
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user