blob: 601c531cd1cfe2d99c9637c2902a1d203b6ae781 (
plain) (
tree)
|
|
import { UserRole } from './user-role'
import { UserAdminFlag } from './user-flag.model'
export interface UserCreate {
username: string
password: string
email: string
videoQuota: number
videoQuotaDaily: number
role: UserRole
adminFlags?: UserAdminFlag
channelName: string
}
|