17 lines
324 B
TypeScript
17 lines
324 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
import type { RunnerGroup } from './RunnerGroup';
|
|
|
|
export type UpdateRunner = {
|
|
id: number;
|
|
group: RunnerGroup;
|
|
firstname: string;
|
|
middlename?: string;
|
|
lastname: string;
|
|
phone?: string;
|
|
email?: string;
|
|
address?: number;
|
|
}
|