7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
export interface GetLeagueAdminResultDTO {
|
|
league: {
|
|
id: string;
|
|
ownerId: string;
|
|
};
|
|
// Additional data would be populated by combining multiple use cases
|
|
} |