aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/actors/account.model.ts
blob: 2ff4b9f5eaa494d9204fc355f2185cd7e413ef45 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                     
                                   
 
                                        
                     
                     

                 
 


                                 





                     
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
  name: string
  displayName: string
  url: string
  host: string
  avatar?: Avatar
}