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 ++-- DSACore/Models/Network/Group.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'DSACore/Models') 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; } } diff --git a/DSACore/Models/Network/Group.cs b/DSACore/Models/Network/Group.cs index 40f5aeb..eab02cd 100644 --- a/DSACore/Models/Network/Group.cs +++ b/DSACore/Models/Network/Group.cs @@ -8,6 +8,6 @@ namespace DSACore.Models.Network public class Group { public string Name { get; set; } - public List Users { get; set; }= new List(); + public List Users { get; set; } = new List(); } } -- cgit v1.2.3-54-g00ecf