import { BaseModel } from './baseModel'; export interface Client extends Omit { status: boolean; name: string; id: string; secret: string; }