mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 07:40:54 -05:00
added chat history stuff
This commit is contained in:
16
Plugins/SimpleStats/Chat/ChatHistory.cs
Normal file
16
Plugins/SimpleStats/Chat/ChatHistory.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StatsPlugin
|
||||
{
|
||||
public class ChatHistory
|
||||
{
|
||||
public int ClientID { get; set; }
|
||||
public string Message { get; set; }
|
||||
public int ServerID { get; set; }
|
||||
public DateTime TimeSent { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user