feat(Documents) Notes/Docs page improvements and warning cleanup
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
namespace Model.Immortal.MemoryTester;
|
||||
namespace Model.MemoryTester;
|
||||
|
||||
public class AnswerEventArgs {
|
||||
public class AnswerEventArgs
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public bool IsCorrect { get; set; }
|
||||
public int Guess { get; set; }
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model.Immortal.MemoryTester;
|
||||
namespace Model.MemoryTester;
|
||||
|
||||
public class MemoryEntityModel {
|
||||
public static List<MemoryEntityModel> TestData = new() {
|
||||
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" },
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Model.Immortal.MemoryTester;
|
||||
namespace Model.MemoryTester;
|
||||
|
||||
public class MemoryQuestionModel {
|
||||
public static List<MemoryQuestionModel> TestData = new() {
|
||||
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 },
|
||||
|
||||
Reference in New Issue
Block a user