1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 18:29:27 +02:00
Peertube/shared/models/user.model.ts
2017-06-10 22:15:25 +02:00

8 lines
132 B
TypeScript

export interface User {
id: number
username: string
email: string
displayNSFW: boolean
role: string[]
createdAt: Date
}