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
@@ -5,8 +5,8 @@ namespace Core.Models.Eft.Insurance;
public class GetInsuranceCostRequestData
{
[JsonPropertyName("traders")]
public List<string> Traders { get; set; }
public List<string>? Traders { get; set; }
[JsonPropertyName("items")]
public List<string> Items { get; set; }
public List<string>? Items { get; set; }
}