1
0
Fork 0
peertube/shared/models/actors/account.model.ts

16 lines
276 B
TypeScript
Raw Normal View History

2017-12-04 04:34:40 -05:00
import { Avatar } from '../avatars/avatar.model'
2017-11-13 11:39:41 -05:00
export interface Account {
id: number
2017-12-04 04:34:40 -05:00
uuid: string
2018-01-04 05:19:16 -05:00
url: string
2017-11-13 11:39:41 -05:00
name: string
2017-12-29 13:10:13 -05:00
displayName: string
2017-11-13 11:39:41 -05:00
host: string
2017-12-04 04:34:40 -05:00
followingCount: number
followersCount: number
createdAt: Date
updatedAt: Date
avatar: Avatar
2017-11-13 11:39:41 -05:00
}