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