Files
SPT-Server-Build/Core/Models/Eft/Quests/RepeatableQuestChangeEvent.cs
T
2025-01-07 06:28:25 -05:00

12 lines
277 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; }
}