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