cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
20 lines (19 loc) • 541 B
TypeScript
declare class AuthUserMst {
_id?: string;
user_username?: string;
user_firstname?: string;
user_middlename?: string;
user_lastname?: string;
user_fullname?: string;
user_emailid?: string;
user_mobileno?: string;
user_password?: string;
user_password_salt?: string;
user_photo_id_cyfm?: string;
user_passwordchangeonlogin?: boolean;
user_isactive?: boolean;
}
interface AuthUserWithMappings extends AuthUserMst {
user_type_mapping?: any;
}
export { AuthUserMst, AuthUserWithMappings };