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