initial change of nullables and few more generators

This commit is contained in:
CWX
2025-01-08 13:16:38 +00:00
parent 7b7f5cf9d2
commit 3ca974de8a
118 changed files with 1050 additions and 947 deletions
@@ -6,18 +6,18 @@ namespace Core.Models.Eft.PresetBuild;
public class PresetBuildActionRequestData
{
[JsonPropertyName("Action")]
public string Action { get; set; }
public string? Action { get; set; }
[JsonPropertyName("Id")]
public string Id { get; set; }
public string? Id { get; set; }
/** name of preset given by player */
[JsonPropertyName("Name")]
public string Name { get; set; }
public string? Name { get; set; }
[JsonPropertyName("Root")]
public string Root { get; set; }
public string? Root { get; set; }
[JsonPropertyName("Items")]
public List<Item> Items { get; set; }
public List<Item>? Items { get; set; }
}