ResidenceArea.ts 220 B

1234567891011
  1. import {Str, Model, Uid} from 'pinia-orm'
  2. export class ResidenceArea extends Model {
  3. static entity = 'residence_areas'
  4. @Uid()
  5. id!: number | string | null
  6. @Str(null, { nullable: true })
  7. label!: string|null
  8. }