package com.social.media.infrastructure.configuration;

import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * Configuration properties for automation settings
 */
@ConfigurationProperties(prefix = "app.automation")
public record AutomationProperties(
    int defaultBotIntervalSeconds,
    int maxActionsPerHour,
    int maxActionsPerDay,
    boolean respectRateLimits,
    boolean simulateHumanBehavior
) {
}
