15 lines
324 B
C#
15 lines
324 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Quests;
|
|
|
|
public class AcceptQuestRequestData
|
|
{
|
|
[JsonPropertyName("Action")]
|
|
public string Action { get; set; } = "QuestAccept";
|
|
|
|
[JsonPropertyName("qid")]
|
|
public string QuestId { get; set; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; }
|
|
} |