| 1234567891011121314151617 |
- import { Str, Model, Bool, Uid } from '@vuex-orm/core'
- export class NotificationUsers extends Model {
- static entity = 'notification_users'
- @Uid()
- id!: number | null
- @Str('', { nullable: true })
- notification!: string
- @Str('', { nullable: true })
- access!: string
- @Bool(false, { nullable: false })
- isRead!: boolean
- }
|