diff --git a/Pages/Index.cshtml b/Pages/Index.cshtml index 538736d..47b985a 100644 --- a/Pages/Index.cshtml +++ b/Pages/Index.cshtml @@ -243,5 +243,14 @@ +
+
+
+
System Internal Storage
+

Check and Display the Internal Storage of the System in which the Application is Running

+ Learn More +
+
+
diff --git a/Pages/Shared/_Layout.cshtml b/Pages/Shared/_Layout.cshtml index 73630fa..d3bd1b2 100644 --- a/Pages/Shared/_Layout.cshtml +++ b/Pages/Shared/_Layout.cshtml @@ -52,6 +52,7 @@ Time Conversion from JSON Trick Getters and Setters for Properties in Panels Get Redundant and Distributed System Status + System Internal Storage diff --git a/Pages/SystemInternalStorage.cshtml b/Pages/SystemInternalStorage.cshtml new file mode 100644 index 0000000..5c5820e --- /dev/null +++ b/Pages/SystemInternalStorage.cshtml @@ -0,0 +1,65 @@ +@page +@model WinCCOAOutsideInfoRepo.Pages.SystemInternalStorageModel +@{ + ViewData["Title"] = "System Internal Storage"; +} + + \ No newline at end of file diff --git a/Pages/SystemInternalStorage.cshtml.cs b/Pages/SystemInternalStorage.cshtml.cs new file mode 100644 index 0000000..3266388 --- /dev/null +++ b/Pages/SystemInternalStorage.cshtml.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace WinCCOAOutsideInfoRepo.Pages +{ + public class SystemInternalStorageModel : PageModel + { + public void OnGet() + { + } + } +}