8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
/**
|
|
* Create league output transport object
|
|
* Output data after creating a new league
|
|
*/
|
|
export interface CreateLeagueOutputDto {
|
|
leagueId: string;
|
|
success: boolean;
|
|
} |