();
+ }
+ }
+
+ public class FormFlag
+ {
+ public string Name { get; set; }
+ public bool IsChecked { get; set; }
+
+ public Method FormMethod { get; set; }
+ }
+
+ public class RenameFlag : FormFlag
+ {
+ public string NewName { get; set; }
+ }
+
+ public enum Method
+ {
+ Delete,
+
+ Rename,
+
+ Add
+ }
+}
\ No newline at end of file
diff --git a/BantFlags/Pages/Index.cshtml b/BantFlags/Pages/Index.cshtml
index 438db72..3121bf7 100644
--- a/BantFlags/Pages/Index.cshtml
+++ b/BantFlags/Pages/Index.cshtml
@@ -6,4 +6,8 @@
}
/bant/ Flags
-Eメール: boku (at) plum (dot) moe
\ No newline at end of file
+Eメール: boku (at) plum (dot) moe
+
+Install Bantflags
+
+Official Thread
\ No newline at end of file
diff --git a/BantFlags/Pages/Index.cshtml.cs b/BantFlags/Pages/Index.cshtml.cs
index 984d628..a01038c 100644
--- a/BantFlags/Pages/Index.cshtml.cs
+++ b/BantFlags/Pages/Index.cshtml.cs
@@ -1,9 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.AspNetCore.Mvc.RazorPages;
+using Microsoft.AspNetCore.Mvc.RazorPages;
namespace BantFlags.Pages
{
@@ -11,7 +6,6 @@ namespace BantFlags.Pages
{
public void OnGet()
{
-
}
}
}
\ No newline at end of file
diff --git a/BantFlags/Pages/Shared/_Layout.cshtml b/BantFlags/Pages/Shared/_Layout.cshtml
index fcd2a8c..a82306c 100644
--- a/BantFlags/Pages/Shared/_Layout.cshtml
+++ b/BantFlags/Pages/Shared/_Layout.cshtml
@@ -8,5 +8,6 @@
@RenderBody()
+ @RenderSection("Scripts", required: false)