From 6caf0178d0132a9e70144094957a8a6dcee666e5 Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Sat, 29 Sep 2018 19:16:40 +0200 Subject: fixed Network namespace --- DSACore/Models/Network/Command.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'DSACore/Models/Network/Command.cs') diff --git a/DSACore/Models/Network/Command.cs b/DSACore/Models/Network/Command.cs index dcfc692..456a896 100644 --- a/DSACore/Models/Network/Command.cs +++ b/DSACore/Models/Network/Command.cs @@ -8,13 +8,13 @@ namespace DSACore.Models.Network public class Command { public ulong GroupId { get; set; } = 0; - public ulong CharId { get; set; } + public ulong CharId { get; set; } public string Name { get; set; } public string CmdIdentifier { get; set; } public List CmdTexts { get; set; } public string CmdText => CmdTexts.Count != 0 ? CmdTexts.First() : ""; - public int Cmdmodifier => CmdTexts.Count!=0&&int.TryParse(CmdTexts.Last(),out int mod)?mod:0; + public int Cmdmodifier => CmdTexts.Count != 0 && int.TryParse(CmdTexts.Last(), out int mod) ? mod : 0; public bool IsDm { get; set; } = false; } } -- cgit v1.2.3-54-g00ecf