d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
25 lines
509 B
C#
25 lines
509 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Eft.Common.Request;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Notes;
|
|
|
|
public record NoteActionRequest : 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; }
|
|
}
|