package com.social.media.interfaces.web.dto.analytics;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Response DTO for followers count query (Option 4)
 */
public record FollowersCountResponse(
    @JsonProperty("conta")
    String account,
    
    @JsonProperty("lista")
    String list,
    
    @JsonProperty("total_seguidores_lista")
    Integer totalFollowersList,
    
    @JsonProperty("total_seguidores_real")
    String realFollowersTotal,
    
    @JsonProperty("seguidores_armazenados")
    Integer storedFollowers
) {
}
