17 lines
326 B
C#
17 lines
326 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|