Files
SPT-Server-Build/Core/Models/Eft/Quests/RepeatableQuestChangeEvent.cs
T
2025-01-08 13:27:58 +00:00

12 lines
291 B
C#

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