Files
2016-09-28 13:21:28 +03:00

14 lines
324 B
C#

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; }
}
}