MyProfile.ts 346 B

12345678910111213141516
  1. import {Model} from 'pinia-orm'
  2. import {Num, Uid, Attr} from 'pinia-orm/dist/decorators'
  3. import { Historical } from '~/types/interfaces'
  4. export class MyProfile extends Model {
  5. static entity = 'accesses'
  6. @Uid()
  7. id!: number | string | null
  8. @Num(0, { notNullable: false })
  9. activityYear!: number
  10. @Attr({})
  11. historical!: Historical
  12. }