12 lines
200 B
C#
12 lines
200 B
C#
|
using System;
|
|||
|
|
|||
|
namespace bib_talk.Business
|
|||
|
{
|
|||
|
public class MessageDto
|
|||
|
{
|
|||
|
public string Username { get; set; }
|
|||
|
public string Message { get; set; }
|
|||
|
public DateTime Timestamp { get; set; }
|
|||
|
}
|
|||
|
}
|