forked from chomp/ChompQuestVerifier
19 lines
526 B
C#
19 lines
526 B
C#
using System.Collections.Generic;
|
|
|
|
namespace QuestValidator.Models.Output
|
|
{
|
|
public class QuestAssort
|
|
{
|
|
public QuestAssort()
|
|
{
|
|
started = new Dictionary<string, string>();
|
|
success = new Dictionary<string, string>();
|
|
fail = new Dictionary<string, string>();
|
|
}
|
|
|
|
public Dictionary<string, string> started { get; set; }
|
|
public Dictionary<string, string> success { get; set; }
|
|
public Dictionary<string, string> fail { get; set; }
|
|
}
|
|
}
|