rename match leauge to type

This commit is contained in:
chsakell
2016-09-30 12:22:16 +03:00
parent 1f14c0c55f
commit 8e6c0efe48
7 changed files with 38 additions and 27 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 League { get; set; }
public string Type { get; set; }
public ICollection<Feed> Feeds { get; set; }
}

View File

@@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
namespace LiveGameFeed.Models
{
@@ -11,6 +10,6 @@ namespace LiveGameFeed.Models
public int HostScore { get; set; }
public int GuestScore { get; set; }
public DateTime MatchDate { get; set; }
public string League { get; set; }
public string Type { get; set; }
}
}