mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2025-02-16 22:22:39 +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
|
|
} |