Rob / Application /Abstractions /Interfaces /IMapService.cs
danylokhodus's picture
map visualize update
cee3b55
Raw
History Blame Contribute Delete
198 Bytes
using Application.DTOs.MapDTOs;
namespace Application.Abstractions.Interfaces
{
public interface IMapService
{
Task<MapDataResponseDTO> GetMapDataAsync(int? userId = null);
}
}