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