aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/users/user-create.model.ts
blob: 08be4db05729fba5cd9783bf7485b888268c1f46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { UserRole } from './user-role'

export interface UserCreate {
  username: string
  password: string
  email: string
  videoQuota: number
  videoQuotaDaily: number
  role: UserRole
}