14 lines
342 B
C#
14 lines
342 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; }
|
|
}
|