mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
9 lines
167 B
C#
9 lines
167 B
C#
namespace LiveGameFeed.Models
|
|
{
|
|
public class MatchScore
|
|
{
|
|
public int HostScore { get; set; }
|
|
public int GuestScore {get; set;}
|
|
}
|
|
}
|