6 lines
99 B
TypeScript

export interface ITeam {
readonly id: number
readonly name: string
readonly userId: number
}