Rename "Image*" to "UserImage*"

This commit is contained in:
Sébastien André
2020-12-18 16:51:49 +01:00
parent 4e3666de82
commit f2875eb969
12 changed files with 50 additions and 49 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
using skydiveLogs_api.Model;
namespace skydiveLogs_api.Data.Interface
{
public interface IUserImageRepository : IRepository<UserImage>
{
IEnumerable<UserImage> GetAll(User user);
}
}