mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 20:20:56 +00:00
15 lines
228 B
C#
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;
|
|
}
|
|
|
|
}
|