package com.social.media.interfaces.web.dto.analytics;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Response DTO for specific followers list query (Option 2)
 */
public record SpecificFollowersResponse(
    @JsonProperty("tipo")
    String type,
    
    @JsonProperty("username")
    String username,
    
    @JsonProperty("posicao")
    Integer position
) {
}
