mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 09:17:47 +00:00
added chat table
This commit is contained in:
11
Models/ChatMessage.cs
Normal file
11
Models/ChatMessage.cs
Normal 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;}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user