Person.ts 260 B

1234567891011121314
  1. import {Model, Uid, Str, Attr} from '@vuex-orm/core'
  2. export class Person extends Model {
  3. static entity = 'people'
  4. @Uid()
  5. id!: number | string | null
  6. @Attr(null)
  7. accessId!: number | null
  8. @Str(null, { nullable: true })
  9. username!: string|null
  10. }