mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
13 lines
291 B
C#
13 lines
291 B
C#
using System;
|
|
|
|
namespace LiveGameFeed.Models
|
|
{
|
|
public class FeedViewModel : IEntityBase
|
|
{
|
|
public int Id { get; set; }
|
|
public string Description { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public int MatchId { get; set; }
|
|
}
|
|
}
|