api client refactor
This commit is contained in:
15
apps/website/lib/dtos/TeamDetailsDto.ts
Normal file
15
apps/website/lib/dtos/TeamDetailsDto.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import type { TeamMemberDto } from './TeamMemberDto';
|
||||
|
||||
/**
|
||||
* Team details data transfer object
|
||||
* Detailed information about a team
|
||||
*/
|
||||
export interface TeamDetailsDto {
|
||||
id: string;
|
||||
name: string;
|
||||
description?: string;
|
||||
logoUrl?: string;
|
||||
memberCount: number;
|
||||
ownerId: string;
|
||||
members: TeamMemberDto[];
|
||||
}
|
||||
Reference in New Issue
Block a user