Files
2016-09-30 16:01:17 +03:00

23 lines
592 B
C#

using System;
using System.Collections.Generic;
namespace LiveGameFeed.Models
{
public class Match : IEntityBase
{
public Match()
{
Feeds = new List<Feed>();
}
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 MatchTypeEnums Type { get; set; }
public ICollection<Feed> Feeds { get; set; }
}
}