/** Details about a project type. */
export interface ProjectType {
  /** The key of the project type. */
  key?: string;
  /** The formatted key of the project type. */
  formattedKey?: string;
  /** The key of the project type's description. */
  descriptionI18nKey?: string;
  /** The icon of the project type. */
  icon?: string;
  /** The color of the project type. */
  color?: string;
}
