Implemented DMService

This commit is contained in:
2026-04-06 08:00:16 +02:00
parent 0abd377f81
commit 91bb2a5d9c
7 changed files with 493 additions and 1 deletions

View File

@@ -14,4 +14,14 @@ export interface PublicUserData {
displayName: string
username: string
userid: string
}
export interface Attachment {
fileId: string
fileName: string
format: string
type: string
path: string
height: number
width: number
}