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.
Application-Web/front/model/Team/Team.ts

28 lines
398 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
}