API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IPropertyImageRepository.cs 275B

12345678910
  1. using System.Collections.Generic;
  2. using UnivateProperties_API.Model.Property;
  3. namespace UnivateProperties_API.Repository.Properties
  4. {
  5. public interface IPropertyImageRepository : IRepository<PropertyImage>
  6. {
  7. List<string> GetImages(int PropertyId);
  8. }
  9. }