Files
SPT-Server-Build/Core/Models/Eft/Quests/RepeatableQuestChangeEvent.cs
T
2025-01-17 18:13:37 +00:00

13 lines
293 B
C#

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