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

import org.hibernate.annotations.Type;
import org.springframework.beans.factory.annotation.Value;

public interface RelatedIsrcProjection {

    @Value("#{target.isrc}")
    String getIsrc();

    @Value("#{target.related_isrcs}")
    @Type(type = "io.delphiplatform.api.v3.rdb.entity.converter.CustomStringArrayType")
    String[] getRelatedIsrc();

}
