PersonalizedList.ts 272 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('')
  7. label!:string|null
  8. @Str('')
  9. entity!:string|null
  10. @Str('')
  11. menuKey!:string
  12. }