summaryrefslogtreecommitdiff
path: root/src/Notepad/Presentation/Model/Menu/MenuNames.cs
diff options
context:
space:
mode:
authormo <mo.khan@gmail.com>2018-11-04 15:22:16 -0700
committermo <mo.khan@gmail.com>2018-11-04 15:22:16 -0700
commit5ee1f55497a4e30322a56f133f897ecde1612967 (patch)
treebf544e0879234c3623869627d8786776cb19b8e9 /src/Notepad/Presentation/Model/Menu/MenuNames.cs
initial commit.HEADmaster
Diffstat (limited to 'src/Notepad/Presentation/Model/Menu/MenuNames.cs')
-rw-r--r--src/Notepad/Presentation/Model/Menu/MenuNames.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Notepad/Presentation/Model/Menu/MenuNames.cs b/src/Notepad/Presentation/Model/Menu/MenuNames.cs
new file mode 100644
index 0000000..f5ef21f
--- /dev/null
+++ b/src/Notepad/Presentation/Model/Menu/MenuNames.cs
@@ -0,0 +1,14 @@
+namespace Notepad.Presentation.Model.Menu {
+ public static class MenuNames {
+ public static readonly string File = "&File";
+ public static readonly string Help = "&Help";
+ }
+
+ public static class MenuItemNames {
+ public static readonly string New = "&New";
+ public static readonly string Save = "&Save";
+ public static readonly string SaveAs = "Save &As...";
+ public static readonly string Exit = "E&xit";
+ public static readonly string About = "&About";
+ }
+} \ No newline at end of file