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