Parameters.ts 417 B

1234567891011121314151617181920
  1. import {Str, Model, Uid} from '@vuex-orm/core'
  2. export class Parameters extends Model {
  3. static entity = 'parameters'
  4. @Uid()
  5. id!: number | string | null
  6. @Str(null, { nullable: true })
  7. financialDate!: string|null
  8. @Str(null, { nullable: true })
  9. musicalDate!: string|null
  10. @Str(null, { nullable: true })
  11. startCourseDate!: string|null
  12. @Str(null, { nullable: true })
  13. endCourseDate!: string|null
  14. }