summaryrefslogtreecommitdiff
path: root/DSACore/Models
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models')
-rw-r--r--DSACore/Models/Command.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/DSACore/Models/Command.cs b/DSACore/Models/Command.cs
new file mode 100644
index 0000000..75e3bee
--- /dev/null
+++ b/DSACore/Models/Command.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models
+{
+ public class Command
+ {
+ public string Name { get; set; }
+ public string CmdText { get; set; }
+ }
+}