import {Model, Str, Uid} from '@vuex-orm/core' export class PersonalizedList extends Model { static entity = 'personalized_lists' @Uid() id!: number | string | null @Str('') label!:string|null @Str('') entity!:string|null @Str('') menuKey!:string }