1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-26 15:29:22 +00:00
comunicapiv2/src/entities/APIClient.ts

12 lines
164 B
TypeScript

/**
* Information about an API client
*
* @author Pierre HUBERT
*/
export interface APIClient {
id: number,
name: string,
token: string,
domain: string,
}