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