2018-01-11 02:35:50 -06:00
|
|
|
import { Actor } from './actor.model'
|
2017-12-04 03:34:40 -06:00
|
|
|
|
2018-01-11 02:35:50 -06:00
|
|
|
export interface Account extends Actor {
|
2017-12-29 12:10:13 -06:00
|
|
|
displayName: string
|
2018-02-15 07:46:26 -06:00
|
|
|
description: string
|
2018-10-05 09:56:14 -05:00
|
|
|
|
|
|
|
userId?: number
|
2017-11-13 10:39:41 -06:00
|
|
|
}
|