mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
16 lines
417 B
C#
16 lines
417 B
C#
using System;
|
|
|
|
namespace LiveGameFeed.Models
|
|
{
|
|
public class MatchViewModel : IEntityBase
|
|
{
|
|
public int Id { get; set; }
|
|
public string Host { get; set; }
|
|
public string Guest { get; set; }
|
|
public int HostScore { get; set; }
|
|
public int GuestScore { get; set; }
|
|
public DateTime MatchDate { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
}
|