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