OrganizationNetwork.ts 176 B

12345678
  1. import {Str, Model, Uid} from 'pinia-orm'
  2. export class OrganizationNetwork extends Model {
  3. static entity = 'organization_networks'
  4. @Uid()
  5. id!: number | string | null
  6. }