add basic app

This commit is contained in:
Dmitrii Kollerov
2022-03-10 15:39:31 +07:00
parent a3823f4bbd
commit 388ebd964b
15 changed files with 657 additions and 4 deletions

17
Chatter/Dto/MessageDto.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Chatter.Dto
{
public class MessageDto
{
public string Text { set; get; }
public DateTime CreateDate { set; get; }
public string User { set; get; }
}
}