aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Objects')
-rw-r--r--ShiftOS.Objects/MudAttributes.cs14
1 files changed, 13 insertions, 1 deletions
diff --git a/ShiftOS.Objects/MudAttributes.cs b/ShiftOS.Objects/MudAttributes.cs
index 1822356..d34c40e 100644
--- a/ShiftOS.Objects/MudAttributes.cs
+++ b/ShiftOS.Objects/MudAttributes.cs
@@ -1,4 +1,4 @@
-/*
+/*
* MIT License
*
* Copyright (c) 2017 Michael VanOverbeek and ShiftOS devs
@@ -64,6 +64,18 @@ namespace ShiftOS.Objects
public string ResponseName { get; private set; }
}
+ public class ChatLogRequest
+ {
+ public ChatLogRequest(string chan, int backtrack = 0)
+ {
+ Channel = chan;
+ Backtrack = backtrack;
+ }
+
+ public int Backtrack { get; set; }
+ public string Channel { get; set; }
+ }
+
}