diff options
author | TrueDoctor <d-kobert@web.de> | 2018-09-26 19:18:41 +0200 |
---|---|---|
committer | TrueDoctor <d-kobert@web.de> | 2018-09-26 19:18:41 +0200 |
commit | 92e8bb7523c775014ccf68355e3f0178ebf4a61c (patch) | |
tree | c68840e084740c890fe85cf2e4a7356115a1b0be /DSACore/Models | |
parent | 0d8ae32d2f974ad6139a55e6e0d97d785fb13489 (diff) |
implemented fudamental Web Api
Diffstat (limited to 'DSACore/Models')
-rw-r--r-- | DSACore/Models/Command.cs | 13 |
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; } + } +} |