Files
aspnet-core-signalr-angular/Models/MatchViewModel.cs
2016-10-03 13:09:12 +03:00

19 lines
516 B
C#

using System;
using System.Collections.Generic;
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; }
public ICollection<FeedViewModel> Feeds {get; set; }
}
}