@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
17 lines (16 loc) • 335 B
TypeScript
declare enum AccountType {
ADMIN = "ADMIN",
SUB_ADMIN = "SUB_ADMIN"
}
export declare class CreateSubAdminDto {
userName: string;
firstName: string;
lastName: string;
accountType: AccountType;
email: string;
mobileCode: string;
mobile: string;
password: string;
roleIds: string;
}
export {};