]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/accounts/account.model.ts
Save
[github/Chocobozzz/PeerTube.git] / shared / models / accounts / account.model.ts
index 338426dc728eee414b1cc6954095651ad07a1596..d1470131722a048ffd60fdbf9e51ee619ec9bf27 100644 (file)
@@ -1,5 +1,13 @@
+import { Avatar } from '../avatars/avatar.model'
+
 export interface Account {
   id: number
+  uuid: string
   name: string
   host: string
+  followingCount: number
+  followersCount: number
+  createdAt: Date
+  updatedAt: Date
+  avatar: Avatar
 }