Fixed typing issue with RepeatableQuests

This commit is contained in:
Chomp
2025-01-13 12:18:48 +00:00
parent 64ccc033d4
commit a9553aa101
@@ -95,7 +95,7 @@ public class PmcDataRepeatableQuest
public string? UnavailableTime { get; set; }
[JsonPropertyName("activeQuests")]
public List<RepeatableQuest?>? ActiveQuests { get; set; }
public List<RepeatableQuest>? ActiveQuests { get; set; }
[JsonPropertyName("inactiveQuests")]
public List<RepeatableQuest>? InactiveQuests { get; set; }