import {Model, Str, Uid} from "@vuex-orm/core"; export class AdminAccess extends Model { static entity = 'admin' @Uid() id!: number @Str(null, { nullable: true }) username!: string|null @Str(null, { nullable: true }) email!: string|null }