create MatchScore update API method

This commit is contained in:
chsakell
2016-10-04 11:21:48 +03:00
parent 9e31c8b135
commit a36624b0bf
4 changed files with 19 additions and 17 deletions

11
Models/MatchScore.cs Normal file
View File

@@ -0,0 +1,11 @@
using System;
namespace LiveGameFeed.Models
{
public class MatchScore
{
public int MatchId { get; set; }
public int HostScore { get; set; }
public int GuestScore {get; set;}
}
}