1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00
Peertube/shared/models/users/user-create.model.ts

9 lines
164 B
TypeScript

import { UserRole } from './user-role'
export interface UserCreate {
username: string
password: string
email: string
videoQuota: number
role: UserRole
}