IW4M-Admin/SharedLibraryCore/Dtos/ChatInfo.cs
RaidMax 4a46abc46d add index to time sent in EFCLientMessage, so we can retrieve faster in context view
set the maximum height of the
add link to profile on client chat
move change history into a seperate service
move around AC penalty processing
2018-09-16 15:34:16 -05:00

12 lines
262 B
C#

using System;
namespace SharedLibraryCore.Dtos
{
public class ChatInfo
{
public int ClientId { get; set; }
public string Message { get; set; }
public DateTime Time { get; set; }
public string Name { get; set; }
}
}