update match scores

This commit is contained in:
chsakell
2016-09-30 16:01:17 +03:00
parent 8e6c0efe48
commit b0040ac178
12 changed files with 173 additions and 28 deletions

View File

@@ -15,7 +15,7 @@ namespace LiveGameFeed.Models
public int HostScore { get; set; }
public int GuestScore { get; set; }
public DateTime MatchDate { get; set; }
public string Type { get; set; }
public MatchTypeEnums Type { get; set; }
public ICollection<Feed> Feeds { get; set; }
}

10
Models/MatchTypeEnum.cs Normal file
View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
namespace LiveGameFeed.Models
{
public enum MatchTypeEnums {
Football,
Basketball
}
}