22 lines
390 B
C#
22 lines
390 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Eft.Common.Tables;
|
|
|
|
namespace Core.Models.Spt.Quests;
|
|
|
|
public record GetRepeatableByIdResult
|
|
{
|
|
[JsonPropertyName("quest")]
|
|
public RepeatableQuest? Quest
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("repeatableType")]
|
|
public PmcDataRepeatableQuest? RepeatableType
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|