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

                          
                 
 


                                 



                     
                     
 
import { ActorImage } from './actor-image.model'
import { Actor } from './actor.model'

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

  updatedAt: Date | string

  userId?: number
}

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