blob: c4faf54bcacca14b9d2c5eda1f4266083a117271 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
using DevHive.Data.Models;
using DevHive.Data.Repositories.Interfaces;
namespace DevHive.Data.Interfaces
{
public interface IChatRepository : IRepository<Chat>
{
}
}
|