More types

This commit is contained in:
Cj
2025-01-07 06:52:03 -05:00
parent 4325d472dc
commit 3f4e529c23
5 changed files with 119 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
using System.Text.Json.Serialization;
using Core.Models.Eft.Common.Request;
namespace Core.Models.Eft.Notes;
public class NoteActionData : BaseInteractionRequestData
{
[JsonPropertyName("Action")]
public string Action { get; set; }
[JsonPropertyName("index")]
public int Index { get; set; }
[JsonPropertyName("note")]
public Note Note { get; set; }
}
public class Note
{
[JsonPropertyName("Time")]
public int Time { get; set; }
[JsonPropertyName("Text")]
public string Text { get; set; }
}