university.ts 193 B

12345678
  1. import { CountryCode } from '../frontend/js/features/settings/data/countries-list'
  2. export type University = {
  3. id: number
  4. name: string
  5. country_code: CountryCode
  6. departments: string[]
  7. }