PersonalizedList.ts 271 B

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