You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
403 B
29 lines
403 B
export interface TeamInfo {
|
|
id: number
|
|
name: string
|
|
picture: string
|
|
mainColor: Color
|
|
secondColor: Color
|
|
}
|
|
|
|
export interface Color {
|
|
hex: string
|
|
}
|
|
|
|
export interface Team {
|
|
info: TeamInfo
|
|
members: Member[]
|
|
}
|
|
|
|
export interface Member {
|
|
user: User
|
|
role: string
|
|
}
|
|
|
|
export interface User {
|
|
id: number
|
|
name: string
|
|
email: string
|
|
profilePicture: string
|
|
}
|