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