using System.Collections.Generic; using skydiveLogs_api.Model; namespace skydiveLogs_api.Data.Interface { public interface IUserImageRepository : IRepository { IEnumerable GetAll(User user); } }