2017-12-04 04:34:40 -05:00
|
|
|
import { Account } from '../accounts'
|
2017-10-24 13:41:09 -04:00
|
|
|
import { VideoChannel } from '../videos/video-channel.model'
|
2017-10-27 10:55:03 -04:00
|
|
|
import { UserRole } from './user-role'
|
2017-06-16 04:36:18 -04:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
export interface User {
|
|
|
|
id: number
|
|
|
|
username: string
|
|
|
|
email: string
|
|
|
|
displayNSFW: boolean
|
2017-06-16 04:36:18 -04:00
|
|
|
role: UserRole
|
2017-09-04 14:07:54 -04:00
|
|
|
videoQuota: number
|
2017-12-04 04:34:40 -05:00
|
|
|
createdAt: Date
|
|
|
|
account: Account
|
2017-10-24 13:41:09 -04:00
|
|
|
videoChannels?: VideoChannel[]
|
2017-06-10 16:15:25 -04:00
|
|
|
}
|