mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
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
12 lines
262 B
C#
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; }
|
|
}
|
|
} |