summaryrefslogtreecommitdiff
path: root/DSACore/Models/Network
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Network')
-rw-r--r--DSACore/Models/Network/Command.cs20
-rw-r--r--DSACore/Models/Network/Group.cs13
-rw-r--r--DSACore/Models/Network/User.cs13
3 files changed, 46 insertions, 0 deletions
diff --git a/DSACore/Models/Network/Command.cs b/DSACore/Models/Network/Command.cs
new file mode 100644
index 0000000..dcfc692
--- /dev/null
+++ b/DSACore/Models/Network/Command.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models.Network
+{
+ public class Command
+ {
+ public ulong GroupId { get; set; } = 0;
+ public ulong CharId { get; set; }
+ public string Name { get; set; }
+ public string CmdIdentifier { get; set; }
+ public List<string> 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 bool IsDm { get; set; } = false;
+ }
+}
diff --git a/DSACore/Models/Network/Group.cs b/DSACore/Models/Network/Group.cs
new file mode 100644
index 0000000..40f5aeb
--- /dev/null
+++ b/DSACore/Models/Network/Group.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models.Network
+{
+ public class Group
+ {
+ public string Name { get; set; }
+ public List<User> Users { get; set; }= new List<User>();
+ }
+}
diff --git a/DSACore/Models/Network/User.cs b/DSACore/Models/Network/User.cs
new file mode 100644
index 0000000..b207a19
--- /dev/null
+++ b/DSACore/Models/Network/User.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models.Network
+{
+ public class User
+ {
+ public string Name { get; set; }
+ public string ConnectionId { get; set; }
+ }
+}