12 lines
306 B
C#
12 lines
306 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Types.Models.Spt.Quests;
|
|
|
|
public class GetRepeatableByIdResult
|
|
{
|
|
[JsonPropertyName("quest")]
|
|
public RepeatableQuest Quest { get; set; }
|
|
|
|
[JsonPropertyName("repeatableType")]
|
|
public PmcDataRepeatableQuest RepeatableType { get; set; }
|
|
} |