mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-23 09:48:26 +00:00
14 lines
328 B
C#
14 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using LiveGameFeed.Models;
|
|
|
|
namespace LiveGameFeed.Data.Abstract
|
|
{
|
|
public interface IMatchRepository : IEntityBaseRepository<Match> { }
|
|
|
|
public interface IFeedRepository : IEntityBaseRepository<Feed> { }
|
|
|
|
}
|