12 lines
389 B
C#
12 lines
389 B
C#
using ApplicationLayer.Services.Locations.Requests;
|
|
|
|
namespace ApplicationLayer.Services.Locations.RequestHandlers.AdminRequests
|
|
{
|
|
/// Handles edit requests of locations from admins
|
|
public interface IEditLocationsRequestsHandler
|
|
{
|
|
/// Handles add country requests
|
|
Task AddCountryAsync(AddCountryRequest request, CancellationToken cancellationToken);
|
|
}
|
|
}
|