mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2024-11-26 15:29:22 +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
|
|
} |