Subdomain.ts 284 B

123456789101112131415
  1. import {Bool, Model, Str, Uid} from "@vuex-orm/core";
  2. export class Subdomain extends Model {
  3. static entity = 'subdomains'
  4. @Uid()
  5. id!: number | string | null
  6. @Str(null, {nullable: true})
  7. subdomain!: string | null
  8. @Bool(false, { nullable: false })
  9. active!: boolean
  10. }