Files
SPT-Server-Build/Core/Models/Eft/Notes/NoteActionData.cs
T
2025-01-07 06:52:03 -05:00

25 lines
505 B
C#

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; }
}