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 -5
View File
@@ -6,20 +6,20 @@ namespace Core.Models.Eft.Notes;
public class NoteActionData : BaseInteractionRequestData
{
[JsonPropertyName("Action")]
public string Action { get; set; }
public string? Action { get; set; }
[JsonPropertyName("index")]
public int Index { get; set; }
public int? Index { get; set; }
[JsonPropertyName("note")]
public Note Note { get; set; }
public Note? Note { get; set; }
}
public class Note
{
[JsonPropertyName("Time")]
public int Time { get; set; }
public int? Time { get; set; }
[JsonPropertyName("Text")]
public string Text { get; set; }
public string? Text { get; set; }
}