sharee.bike-App/SharedBusinessLogic/ViewModel/Bikes/Bike/BC/RequestHandler/IRequestHandler.cs
2024-04-09 12:53:23 +02:00

14 lines
433 B
C#

using System.Threading.Tasks;
namespace ShareeBike.ViewModel.Bikes.Bike.BC.RequestHandler
{
public interface IRequestHandler : IRequestHandlerBase
{
/// <summary>
/// Performs the copri action to be executed when user presses the copri button managed by request handler.
/// </summary>
/// <returns>New handler object if action suceesed, same handler otherwise.</returns>
Task<IRequestHandler> HandleRequest();
}
}