forked from chomp/ChompQuestVerifier
10 lines
145 B
C#
10 lines
145 B
C#
namespace QuestValidator.Common.Models
|
|
{
|
|
public enum QuestStatus
|
|
{
|
|
Started = 2,
|
|
Success = 4,
|
|
Fail = 5
|
|
}
|
|
}
|