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,9 @@
/**
* Defines how a Teams request is represented in TeamCollectionAdapter
*/
export interface TeamRequest {
id: string;
collectionID: string;
title: string;
request: any;
}