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); }