api-client/helpers/teams/TeamCollection.ts

12 lines
264 B
TypeScript
Raw Normal View History

2021-05-09 05:30:31 +00:00
import { TeamRequest } from "./TeamRequest"
2021-05-05 14:44:17 +00:00
/**
* Defines how a Team Collection is represented in the TeamCollectionAdapter
*/
export interface TeamCollection {
2021-05-09 05:30:31 +00:00
id: string
title: string
children: TeamCollection[] | null
requests: TeamRequest[] | null
2021-05-05 14:44:17 +00:00
}