mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
12 lines
229 B
C#
12 lines
229 B
C#
using System;
|
|
|
|
namespace LiveGameFeed.Models
|
|
{
|
|
public class ChatMessage
|
|
{
|
|
public int MatchId { get; set; }
|
|
public string Text { get; set; }
|
|
public DateTime CreatedAt {get; set;}
|
|
}
|
|
}
|