Introduce TeamCollectionAdapter

This commit is contained in:
Andrew Bastin
2021-05-05 10:44:17 -04:00
parent ad9cdf3fa8
commit 86ddfe2c9f
3 changed files with 425 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { TeamRequest } from "./TeamRequest";
/**
* Defines how a Team Collection is represented in the TeamCollectionAdapter
*/
export interface TeamCollection {
id: string;
title: string;
children: TeamCollection[] | null;
requests: TeamRequest[] | null;
}