aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/actors/account.model.ts
blob: 043a2507e388f8dab9408883c81ea04f6fe5c467 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Actor } from './actor.model'
import { Avatar } from '../avatars'

export interface Account extends Actor {
  displayName: string
  description: string

  userId?: number
}

export interface AccountSummary {
  id: number
  uuid: string
  name: string
  displayName: string
  url: string
  host: string
  avatar?: Avatar
}