AdminAccess.ts 257 B

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