API
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }