mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
import { UserRole } from './user-role'
|
|
|
|
export interface UserCreate {
|
|
username: string
|
|
password: string
|
|
email: string
|
|
videoQuota: number
|
|
role: UserRole
|
|
}
|