mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-23 09:48:26 +00:00
12 lines
226 B
C#
12 lines
226 B
C#
using System;
|
|
|
|
namespace LiveGameFeed.Models
|
|
{
|
|
public class MatchScore
|
|
{
|
|
public int MatchId { get; set; }
|
|
public int HostScore { get; set; }
|
|
public int GuestScore {get; set;}
|
|
}
|
|
}
|