import {Attr, Num, Model, Uid} from '@vuex-orm/core' import { Historical } from '~/types/interfaces' export class MyProfile extends Model { static entity = 'accesses' @Uid() id!: number | string | null @Num(0, { nullable: true }) activityYear!: number @Attr({}) historical!: Historical }