mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-23 01:37:59 +00:00
added Data, Models, EntityFramework
This commit is contained in:
13
Models/Feed.cs
Normal file
13
Models/Feed.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user