/** The project and issue type mapping. */
export interface ProjectIssueTypeMapping {
  /** The ID of the issue type. */
  issueTypeId: string;
  /** The ID of the project. */
  projectId: string;
}
