From 19bf37de7642ae8cdefd8fc6b4fadac3ac96ea9b Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Wed, 26 Sep 2018 23:49:26 +0200 Subject: ported most code to WebApiProject everything except the user identification and file locations should be somewhat functional --- DSACore/Models/Command.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'DSACore/Models') 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 CmdTexts { get; set; } + public string CmdText => CmdTexts.First(); + public int Cmdmodifier { get; set; } = 0; + public bool IsDm { get; set; } = false; } } -- cgit v1.2.3-54-g00ecf