| 123456789101112131415161718192021 |
- import {Attr, Str} from '@vuex-orm/core'
- import {Model} from '@/models/Model'
- export class OrganizationLicence extends Model{
- static entity = 'organization_licences'
- @Attr(null)
- id!: number | null
- @Str('', {nullable: false})
- licensee!: string
- @Str('', {nullable: true})
- licenceNumber!: string
- @Str('', {nullable: true})
- categorie!: string
- @Str('', {nullable: true})
- validityDate!: string
- }
|