summaryrefslogtreecommitdiff
path: root/src/Notepad/Presentation/Model/Menu/MenuNames.cs
diff options
context:
space:
mode:
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