9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
export type RunnerTeam = {
|
|
parentGroup: string;
|
|
id: number;
|
|
name: string;
|
|
contact?: any;
|
|
distance: number;
|
|
distanceDonationAmount: number;
|
|
};
|