package com.zhengmeng.ocrplatform.worker;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "ocr-platform.worker")
public record WorkerProperties(
        boolean enabled,
        int batchSize,
        long pollIntervalMs,
        int maxRetryAttempts,
        long recognizingTimeoutMs
) {
}
