blob: 120dec271db48a40a912bf7bb002b1ecd54f546c (
plain) (
tree)
|
|
import { ActorImage } from './actor-image.model'
import { Actor } from './actor.model'
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?: ActorImage
}
|