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

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

public interface PlaylistCountryProjection {

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

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

}
