Initial commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace Model.Immortal.MemoryTester;
|
||||
|
||||
public class AnswerEventArgs {
|
||||
public string Name { get; set; }
|
||||
public bool IsCorrect { get; set; }
|
||||
public int Guess { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model.Immortal.MemoryTester;
|
||||
|
||||
public class MemoryEntityModel {
|
||||
public static List<MemoryEntityModel> TestData = new() {
|
||||
new MemoryEntityModel { Id = 1, Name = "Masked Hunter" },
|
||||
new MemoryEntityModel { Id = 2, Name = "Scepter" },
|
||||
new MemoryEntityModel { Id = 3, Name = "Wraith Bow" },
|
||||
new MemoryEntityModel { Id = 4, Name = "Thrum" }
|
||||
};
|
||||
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model.Immortal.MemoryTester;
|
||||
|
||||
public class MemoryQuestionModel {
|
||||
public static List<MemoryQuestionModel> TestData = new() {
|
||||
new MemoryQuestionModel { Id = 1, MemoryEntityModelId = 1, Name = "Range", Answer = 600, IsRevealed = false },
|
||||
new MemoryQuestionModel { Id = 2, MemoryEntityModelId = 2, Name = "Range", Answer = 600, IsRevealed = false },
|
||||
new MemoryQuestionModel { Id = 3, MemoryEntityModelId = 3, Name = "Range", Answer = 600, IsRevealed = false },
|
||||
new MemoryQuestionModel { Id = 4, MemoryEntityModelId = 4, Name = "Range", Answer = 600, IsRevealed = false }
|
||||
};
|
||||
|
||||
public int Id { get; set; }
|
||||
public int MemoryEntityModelId { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
public int Guess { get; set; }
|
||||
public int Answer { get; set; }
|
||||
public bool IsRevealed { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user