/** The ID and the name of the workflow scheme. */
export interface WorkflowSchemeIdName {
  /** The ID of the workflow scheme. */
  id: string;
  /** The name of the workflow scheme. */
  name: string;
}
