IW4M-Admin/Plugins/SimpleStats/Chat/ChatHistory.cs
2017-11-02 17:20:10 -05:00

17 lines
362 B
C#

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; }
}
}