18 lines
409 B
TypeScript
Executable File
18 lines
409 B
TypeScript
Executable File
export interface IBaseNotificationData {
|
|
userPhone?: string;
|
|
userEmail?: string;
|
|
userName?: string;
|
|
}
|
|
|
|
export interface IChangePasswordNotificationData extends IBaseNotificationData {
|
|
newPassword: string;
|
|
}
|
|
|
|
export interface IGenericNotificationData extends IBaseNotificationData {
|
|
message: string;
|
|
}
|
|
|
|
export interface INewEmailNotificationData extends IBaseNotificationData {
|
|
newEmail: string;
|
|
}
|