| 123456789101112131415 |
- import {Bool, Model, Str, Uid} from "@vuex-orm/core";
- export class Subdomain extends Model {
- static entity = 'subdomains'
- @Uid()
- id!: number | string | null
- @Str(null, {nullable: true})
- subdomain!: string | null
- @Bool(false, { nullable: false })
- active!: boolean
- }
|