cloud-ide-model-schema
Version:
Pachage for schema management of Cloud IDEsys LMS
14 lines (13 loc) • 520 B
TypeScript
import { IUser } from "../schema/auth";
import { controllerResponse } from "../utilities/helpers/response.helper";
import { SendMailInfo } from "./emailServiceConfig";
export interface ForgotPasswordControllerResponse extends controllerResponse {
data?: Partial<ForgotPasswordResponseData>;
}
export interface ForgotPasswordResponseData {
user: Partial<IUser>;
reset_password_link: string;
}
export interface ForgotPasswordSendMailInfo extends SendMailInfo {
data: Partial<ForgotPasswordResponseData>;
}