13 lines
224 B
C#
13 lines
224 B
C#
|
using System;
|
|||
|
|
|||
|
namespace bib_talk.Business
|
|||
|
{
|
|||
|
public class Message
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Username { get; set; }
|
|||
|
public string Text { get; set; }
|
|||
|
public DateTime Timestamp { get; set; }
|
|||
|
}
|
|||
|
}
|