aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/users/user.model.ts
blob: 4b17881e5cd6e382b8e8d93d52c7ee1442e3a243 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                     
                                                            
                                      
 




                       
                
                    

                  
                                
 
import { Account } from '../accounts'
import { VideoChannel } from '../videos/video-channel.model'
import { UserRole } from './user-role'

export interface User {
  id: number
  username: string
  email: string
  displayNSFW: boolean
  role: UserRole
  videoQuota: number
  createdAt: Date
  account: Account
  videoChannels?: VideoChannel[]
}