2025-01-20 14:05:21 -06:00

15 lines
228 B
C#

namespace BOTWM.Server.DTO
{
public class QuestsDTO
{
public List<String> Completed;
}
public class QuestsDTONew
{
public bool IsLoad;
public Dictionary<int, int> Quests;
}
}