a05b392aea
+ Klassen getrennt + Business Schicht abgeändert
16 lines
302 B
C#
16 lines
302 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bib_talk.Business
|
|
{
|
|
public class MessageDto
|
|
{
|
|
public string Username { get; set; }
|
|
public string Message { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
}
|
|
}
|