Dialogs nullable
This commit is contained in:
@@ -4,21 +4,21 @@ namespace Core.Models.Eft.Customization;
|
||||
|
||||
public class CustomizationSetRequest
|
||||
{
|
||||
[JsonPropertyName("Action")]
|
||||
public string Action { get; set; } = "CustomizationSet";
|
||||
[JsonPropertyName("Action")]
|
||||
public string Action { get; set; } = "CustomizationSet";
|
||||
|
||||
[JsonPropertyName("customizations")]
|
||||
public List<CustomizationSetOption> Customizations { get; set; }
|
||||
[JsonPropertyName("customizations")]
|
||||
public List<CustomizationSetOption>? Customizations { get; set; }
|
||||
}
|
||||
|
||||
public class CustomizationSetOption
|
||||
{
|
||||
[JsonPropertyName("id")]
|
||||
public string Id { get; set; }
|
||||
[JsonPropertyName("id")]
|
||||
public string? Id { get; set; }
|
||||
|
||||
[JsonPropertyName("type")]
|
||||
public string Type { get; set; }
|
||||
[JsonPropertyName("type")]
|
||||
public string? Type { get; set; }
|
||||
|
||||
[JsonPropertyName("source")]
|
||||
public string Source { get; set; }
|
||||
[JsonPropertyName("source")]
|
||||
public string? Source { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user