summaryrefslogtreecommitdiff
path: root/DSACore/Models
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-26 23:49:26 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-26 23:49:26 +0200
commit19bf37de7642ae8cdefd8fc6b4fadac3ac96ea9b (patch)
tree08e7a9b15d806777fa1b839e897a171823649ab1 /DSACore/Models
parentb411aa2128c2724bec0ecedb8cb4e1ffa59f3b53 (diff)
ported most code to WebApiProject
everything except the user identification and file locations should be somewhat functional
Diffstat (limited to 'DSACore/Models')
-rw-r--r--DSACore/Models/Command.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/DSACore/Models/Command.cs b/DSACore/Models/Command.cs
index 75e3bee..2630d47 100644
--- a/DSACore/Models/Command.cs
+++ b/DSACore/Models/Command.cs
@@ -7,7 +7,13 @@ namespace DSACore.Models
{
public class Command
{
+ public ulong GroupId { get; set; } = 0;
+ public ulong CharId { get; set; }
public string Name { get; set; }
- public string CmdText { get; set; }
+ public string CmdIdentifier { get; set; }
+ public List<string> CmdTexts { get; set; }
+ public string CmdText => CmdTexts.First();
+ public int Cmdmodifier { get; set; } = 0;
+ public bool IsDm { get; set; } = false;
}
}