mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2025-03-22 22:00:44 +00:00
13 lines
202 B
TypeScript
13 lines
202 B
TypeScript
|
/**
|
||
|
* Single unread conversation information
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
export interface UnreadConversation {
|
||
|
id: number,
|
||
|
name: string,
|
||
|
lastActive: number,
|
||
|
userID: number,
|
||
|
message: string
|
||
|
}
|