namespace UtopiaCanteenSystem.Services;
///
/// Syncs unsynced ScanRecords to the configured UIND API endpoint.
///
public interface ISyncService
{
/// Runs one sync: POST unsynced records to API and mark as synced on success.
Task SyncNowAsync(CancellationToken cancellationToken = default);
}