package com.infoclinika.pdx.projection;

import java.util.List;

/**
 * Projection of Pathway with the list of associated genes.
 */
public interface PathwayWithGenes {
    String getName();

    List<IdAndName> getGenes();
}
