mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
10 lines
227 B
C#
10 lines
227 B
C#
using LiveGameFeed.Models;
|
|
|
|
namespace LiveGameFeed.Data.Abstract
|
|
{
|
|
public interface IMatchRepository : IEntityBaseRepository<Match> { }
|
|
|
|
public interface IFeedRepository : IEntityBaseRepository<Feed> { }
|
|
|
|
}
|