2017-10-27 09:55:03 -05:00
|
|
|
import { UserRole } from './user-role'
|
|
|
|
|
2017-07-10 12:43:21 -05:00
|
|
|
export interface UserCreate {
|
|
|
|
username: string
|
|
|
|
password: string
|
|
|
|
email: string
|
2017-09-04 13:07:54 -05:00
|
|
|
videoQuota: number
|
2018-08-28 02:01:35 -05:00
|
|
|
videoQuotaDaily: number
|
2017-10-27 09:55:03 -05:00
|
|
|
role: UserRole
|
2017-07-10 12:43:21 -05:00
|
|
|
}
|