account.model.ts 315 B

123456789101112131415161718
  1. import { Actor } from './actor.model'
  2. import { Avatar } from '../avatars'
  3. export interface Account extends Actor {
  4. displayName: string
  5. description: string
  6. userId?: number
  7. }
  8. export interface AccountSummary {
  9. id: number
  10. name: string
  11. displayName: string
  12. url: string
  13. host: string
  14. avatar?: Avatar
  15. }