mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
14 lines
324 B
C#
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; }
|
|
}
|
|
}
|