feat(interfaces): add IReqRegister interface

This interface defines the register request structure, including `username`, `displayName`, `firstName`, `lastName`, `password`, and `gdpr` status. This will ensure consistency in the form of request data throughout the application.

Signed-off-by: Mathis <yidhra@tuta.io>
This commit is contained in:
Mathis H (Avnyr) 2024-04-25 16:06:33 +02:00
parent a430044d95
commit dda3eea9e1
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -0,0 +1,8 @@
export interface IReqRegister {
username: string;
displayName: string;
firstName: string;
lastName: string;
password: string;
gdpr?: boolean;
}