blob: 45beaa05fca7c76a6814fdfbaf0cbbbb07d35f2d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
using System.Threading.Tasks;
using DevHive.Data.Models;
namespace DevHive.Data.Interfaces
{
public interface IProfilePictureRepository : IRepository<ProfilePicture>
{
Task<ProfilePicture> GetByURLAsync(string picUrl);
}
}
|