Files
SPT-Server-Build/Libraries/Core/Models/Eft/Notes/NoteActionData.cs
T
2025-02-07 19:36:17 +00:00

39 lines
568 B
C#

using System.Text.Json.Serialization;
using Core.Models.Eft.Common.Request;
namespace Core.Models.Eft.Notes;
public record NoteActionData : BaseInteractionRequestData
{
[JsonPropertyName("index")]
public int? Index
{
get;
set;
}
[JsonPropertyName("note")]
public Note? Note
{
get;
set;
}
}
public record Note
{
[JsonPropertyName("Time")]
public double? Time
{
get;
set;
}
[JsonPropertyName("Text")]
public string? Text
{
get;
set;
}
}