summaryrefslogtreecommitdiff
path: root/DSACore/Models
diff options
context:
space:
mode:
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;
}
}