mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 22:28:15 -05:00
17 lines
362 B
C#
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; }
|
|
}
|
|
}
|