import { Attr, Str, Model } from '@vuex-orm/core' export class Country extends Model { static entity = 'countries' @Attr(null) id!: number | null @Str('') name!: string }