PersonalizedList.ts 316 B

1234567891011121314151617
  1. import {Model, Str, Uid} from '@vuex-orm/core'
  2. export class PersonalizedList extends Model {
  3. static entity = 'personalized_lists'
  4. @Uid()
  5. id!: number | string | null
  6. @Str(null, { nullable: true })
  7. label!:string|null
  8. @Str(null, { nullable: true })
  9. entity!:string|null
  10. @Str('')
  11. menuKey!:string
  12. }