OrganizationNetwork.ts 421 B

1234567891011121314151617181920
  1. import {Str, Model, Uid} from '@vuex-orm/core'
  2. export class OrganizationLicence extends Model {
  3. static entity = 'organization_licences'
  4. @Uid()
  5. id!: number | string | null
  6. @Str('', { nullable: false })
  7. licensee!: string
  8. @Str(null, { nullable: true })
  9. licenceNumber!: string|null
  10. @Str(null, { nullable: true })
  11. categorie!: string|null
  12. @Str(null, { nullable: true })
  13. validityDate!: string|null
  14. }