using System; using System.Threading.Tasks; using DevHive.Data.Models; namespace DevHive.Data.Interfaces { public interface IProfilePictureRepository : IRepository { Task GetByURLAsync(string picUrl); } }