lfk-client-js/dist/models/ResponseRunnerTeam.d.ts

9 lines
269 B
TypeScript

import type { GroupContact } from './GroupContact';
import type { RunnerOrganisation } from './RunnerOrganisation';
export declare type ResponseRunnerTeam = {
parentGroup: RunnerOrganisation;
id: number;
name: string;
contact?: GroupContact;
};