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

Can get the list of unread conversations

This commit is contained in:
2019-12-07 17:35:14 +01:00
parent 94600597b4
commit 83e61f49ca
4 changed files with 90 additions and 1 deletions

View File

@ -0,0 +1,13 @@
/**
* Single unread conversation information
*
* @author Pierre HUBERT
*/
export interface UnreadConversation {
id: number,
name: string,
lastActive: number,
userID: number,
message: string
}