17 lines
376 B
C#
17 lines
376 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Quests;
|
|
|
|
public record CompleteQuestRequestData
|
|
{
|
|
[JsonPropertyName("Action")]
|
|
public string? Action { get; set; }
|
|
|
|
/** Quest Id */
|
|
[JsonPropertyName("qid")]
|
|
public string? QuestId { get; set; }
|
|
|
|
[JsonPropertyName("removeExcessItems")]
|
|
public bool? RemoveExcessItems { get; set; }
|
|
}
|