1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-09 14:47:59 -05:00
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; }
}
}