import {Num, Model, Uid} from '@vuex-orm/core' export class EducationTiming extends Model { static entity = 'education_timings' @Uid() id!: number | string | null @Num(null, { nullable: true }) timing!: number }