13 lines
293 B
C#
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; }
|
|
}
|