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