using System.Collections.Generic; using UnivateProperties_API.Model.Property; namespace UnivateProperties_API.Repository.Properties { public interface IPropertyImageRepository : IRepository { List GetImages(int PropertyId); } }