12 lines
262 B
C#
Raw Normal View History

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