aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/actors/account.model.ts
blob: 7f1dbbc37755e0392201da5219a40f19bda25e44 (plain) (blame)
1
2
3
4
5
6
7
8
import { Actor } from './actor.model'

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

  userId?: number
}