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