10 lines
223 B
C#
Raw Permalink Normal View History

using DamageAssesment.Api.Responses.Models;
2023-08-15 23:52:30 -04:00
namespace DamageAssesment.Api.Responses.Interfaces
2023-08-15 23:52:30 -04:00
{
public interface ILocationServiceProvider
{
Task<List<Location>> getLocationsAsync(string token);
2023-08-15 23:52:30 -04:00
}
}