1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-20 16:45:16 +00:00

Can get API client information from database

This commit is contained in:
2019-11-22 09:31:13 +01:00
parent e7df7aab03
commit 2c4c914fbc
3 changed files with 116 additions and 0 deletions

12
src/entities/APIClient.ts Normal file
View File

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