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