Files
meezi/src/Meezi.Core/Interfaces/ISnappfoodClient.cs
T

12 lines
429 B
C#
Raw Normal View History

2026-05-27 21:33:48 +03:30
namespace Meezi.Core.Interfaces;
public interface ISnappfoodClient
{
Task AcknowledgeOrderAsync(string snappfoodOrderId, CancellationToken cancellationToken = default);
Task NotifyOrderDeliveredAsync(string snappfoodOrderId, CancellationToken cancellationToken = default);
Task NotifyOrderStatusAsync(
string snappfoodOrderId,
string status,
CancellationToken cancellationToken = default);
}