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

9 lines
269 B
TypeScript
Raw Normal View History

2020-12-22 14:17:25 +00:00
import type { GroupContact } from './GroupContact';
import type { RunnerOrganisation } from './RunnerOrganisation';
export declare type ResponseRunnerTeam = {
parentGroup: RunnerOrganisation;
id: number;
name: string;
contact?: GroupContact;
};