IW4M-Admin/SharedLibraryCore/Dtos/ChatInfo.cs

12 lines
262 B
C#
Raw Normal View History

2018-03-09 03:01:12 -05:00
using System;
2018-04-08 02:44:42 -04:00
namespace SharedLibraryCore.Dtos
2018-03-09 03:01:12 -05:00
{
public class ChatInfo
{
public int ClientId { get; set; }
2018-03-09 03:01:12 -05:00
public string Message { get; set; }
public DateTime Time { get; set; }
public string Name { get; set; }
}
}