12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
import type { GroupContact } from './GroupContact';
|
|
|
|
export type ResponseRunnerGroup = {
|
|
id: number;
|
|
name: string;
|
|
contact?: GroupContact;
|
|
}
|