Country.ts 180 B

1234567891011
  1. import {Str, Model, Uid} from 'pinia-orm'
  2. export class Country extends Model {
  3. static entity = 'countries'
  4. @Uid()
  5. id!: number | string | null
  6. @Str('')
  7. name!: string
  8. }