added chat table

This commit is contained in:
chsakell
2016-10-03 16:30:49 +03:00
parent df79d53626
commit 2b7a82666b
9 changed files with 119 additions and 17 deletions

11
Models/ChatMessage.cs Normal file
View File

@@ -0,0 +1,11 @@
using System;
namespace LiveGameFeed.Models
{
public class ChatMessage
{
public int MatchId { get; set; }
public string Text { get; set; }
public DateTime CreatedAt {get; set;}
}
}