| 1234567891011121314151617 |
- import {Str, Model, Uid} from '@vuex-orm/core'
- export class OrganizationArticle extends Model {
- static entity = 'organization_articles'
- @Uid()
- id!: number | string | null
- @Str('')
- title!: string
- @Str('')
- link!: string
- @Str('')
- date!: string
- }
|