package com.zhengmeng.ocrplatform.document;

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

import java.nio.file.Path;

@ConfigurationProperties(prefix = "ocr-platform.storage")
public record StorageProperties(Path rootPath) {
}
