From 90fecb6d082266875c9947f10ee1c045d0f81f91 Mon Sep 17 00:00:00 2001 From: Chomp Date: Tue, 28 Sep 2021 19:39:45 +0100 Subject: [PATCH] Quest status enum --- QuestValidator.Common/Models/QuestStatus.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 QuestValidator.Common/Models/QuestStatus.cs diff --git a/QuestValidator.Common/Models/QuestStatus.cs b/QuestValidator.Common/Models/QuestStatus.cs new file mode 100644 index 0000000..568939a --- /dev/null +++ b/QuestValidator.Common/Models/QuestStatus.cs @@ -0,0 +1,9 @@ +namespace QuestValidator.Common.Models +{ + public enum QuestStatus + { + Started = 2, + Success = 4, + Fail = 5 + } +}