feat(interfaces): add IReqLogin interface

The new IReqLogin interface defines the request shape for user login. It includes two string properties - username and password.

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

View File

@ -0,0 +1,4 @@
export interface IReqLogin {
username: string;
password: string;
}