import {Bool, Model, Str, Uid} from "pinia-orm"; 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 }