12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
import { HoppRESTRequest } from "../types/HoppRESTRequest"
|
|
|
|
/**
|
|
* Defines how a Teams request is represented in TeamCollectionAdapter
|
|
*/
|
|
export interface TeamRequest {
|
|
id: string
|
|
collectionID: string
|
|
title: string
|
|
request: HoppRESTRequest
|
|
}
|