| 1234567891011121314151617 |
- import {Str, Model, Uid} from '@vuex-orm/core'
- export class NotificationMessage extends Model {
- static entity = 'notification_messages'
- @Uid()
- id!: number | null
- @Str('', { nullable: true })
- about!: string
- @Str('', { nullable: true })
- action!: string
- @Str('', { nullable: true })
- fileName!: string
- }
|