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

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

import java.time.LocalDateTime;

public interface PlaylistDspSyncDateTimeProjection {
    @Value("#{target.playlist_id}")
    String getPlaylistId();

    @Value("#{target.country_code}")
    String getCountryCode();

    @Value("#{target.dsp}")
    String getDsp();

    @Value("#{target.dsp_sync_date_time}")
    LocalDateTime getDspSyncDateTime();
}
