/** Details of the association between an issue type scheme and project. */
export interface IssueTypeSchemeProjectAssociation {
  /** The ID of the issue type scheme. */
  issueTypeSchemeId: string;
  /** The ID of the project. */
  projectId: string;
}
