Cycle.ts 241 B

1234567891011121314
  1. import {Str, Model, Uid, Num} from '@vuex-orm/core'
  2. export class Cycle extends Model {
  3. static entity = 'cycles'
  4. @Uid()
  5. id!: number | string | null
  6. @Str(null, { nullable: true })
  7. label!: string|null
  8. @Num(0)
  9. order!: number
  10. }