package io.delphiplatform.api.v3.rdb.entity.apple.music;

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

import java.time.LocalDate;

public interface AppleMusicChartDateProjection {
    @Value("#{target.apple_music_chart_id}")
    String getAppleMusicChartId();

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