2017-07-10 12:43:21 -05:00
|
|
|
import { UserRole } from './user-role.type'
|
2017-10-24 12:41:09 -05:00
|
|
|
import { VideoChannel } from '../videos/video-channel.model'
|
2017-06-16 03:36:18 -05:00
|
|
|
|
2017-06-10 15:15:25 -05:00
|
|
|
export interface User {
|
|
|
|
id: number
|
|
|
|
username: string
|
|
|
|
email: string
|
|
|
|
displayNSFW: boolean
|
2017-06-16 03:36:18 -05:00
|
|
|
role: UserRole
|
2017-09-04 13:07:54 -05:00
|
|
|
videoQuota: number
|
2017-10-24 12:41:09 -05:00
|
|
|
createdAt: Date,
|
|
|
|
author: {
|
|
|
|
id: number
|
|
|
|
uuid: string
|
|
|
|
}
|
|
|
|
videoChannels?: VideoChannel[]
|
2017-06-10 15:15:25 -05:00
|
|
|
}
|