22 lines
370 B
C#
22 lines
370 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Eft.Inventory;
|
|
|
|
namespace Core.Models.Eft.Quests;
|
|
|
|
public record AcceptQuestRequestData : InventoryBaseActionRequestData
|
|
{
|
|
[JsonPropertyName("qid")]
|
|
public string? QuestId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("type")]
|
|
public string? Type
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|