mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
13 lines
218 B
C#
13 lines
218 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LiveGameFeed.Models
|
|
{
|
|
public interface IEntityBase
|
|
{
|
|
int Id { get; set; }
|
|
}
|
|
}
|