1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-21 00:55:17 +00:00

Can get the list of conversations

This commit is contained in:
2019-11-23 18:41:13 +01:00
parent 6ad4375b2a
commit d6eed99a1a
4 changed files with 148 additions and 0 deletions

View File

@ -0,0 +1,16 @@
/**
* Single conversation information
*
* @author Pierre HUBERT
*/
export interface Conversation {
id: number,
ownerID: number,
name: string,
lastActive: number,
timeCreate: number,
following: boolean,
sawLastMessage: boolean,
members: Array<number>
}