Files
SPT-Server-Build/Libraries/Core/Models/Eft/Quests/AcceptQuestRequestData.cs
T
2025-01-19 17:45:48 +00:00

16 lines
347 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Quests;
public record AcceptQuestRequestData
{
[JsonPropertyName("Action")]
public string? Action { get; set; } = "QuestAccept";
[JsonPropertyName("qid")]
public string? QuestId { get; set; }
[JsonPropertyName("type")]
public string? Type { get; set; }
}