added Data, Models, EntityFramework

This commit is contained in:
chsakell
2016-09-28 13:21:28 +03:00
parent 1ef3f04731
commit e6aed79fa9
17 changed files with 378 additions and 28 deletions

13
Models/Feed.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
namespace LiveGameFeed.Models
{
public class Feed : IEntityBase
{
public int Id { get; set; }
public string Description { get; set; }
public DateTime CreatedAt { get; set; }
public int MatchId { get; set; }
public Match Match { get; set; }
}
}