package com.infoclinika.pdx.projection;

/**
 * Projection with id and name fields.
 */
@SuppressWarnings("InterfaceNeverImplemented")
public interface IdAndName {
    Long getId();

    String getName();
}
