package io.delphiplatform.api.v3.rdb.entity.spotify;

import org.springframework.beans.factory.annotation.Value;

import java.time.LocalDate;

public interface SpotifyChartDateProjection {
    @Value("#{target.chart_date}")
    LocalDate getChartDate();

    @Value("#{target.spotify_chart_id}")
    String getSpotifyChartId();
}
