/**
 * Object from Backend
 *
 * The number of these instances
 */
export interface Count {
    /**
     * Count instances
     */
    count: number;
    /**
     * Name instances
     */
    entity: string;
}
