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:
16
src/entities/Conversation.ts
Normal file
16
src/entities/Conversation.ts
Normal 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>
|
||||
}
|
Reference in New Issue
Block a user