mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:36:39 +00:00
11 lines
240 B
C#
11 lines
240 B
C#
using SatelliteProvider.Common.DTO;
|
|
|
|
namespace SatelliteProvider.Common.Interfaces;
|
|
|
|
public interface IRouteService
|
|
{
|
|
Task<RouteResponse> CreateRouteAsync(CreateRouteRequest request);
|
|
Task<RouteResponse?> GetRouteAsync(Guid id);
|
|
}
|
|
|