Files
SPT-Server-Build/Core/Models/Spt/Quests/GetRepeatableByIdResult.cs
T

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; }
}