package com.zhengmeng.ocrplatform.settings;

public record AppSettingItem(
        String key,
        String label,
        String type,
        String value,
        String defaultValue,
        String description
) {
    public static AppSettingItem fromEntity(AppSettingEntity entity) {
        return new AppSettingItem(
                entity.getKey(),
                entity.getLabel(),
                entity.getType(),
                entity.getValue(),
                entity.getDefaultValue(),
                entity.getDescription()
        );
    }
}
