From a430044d95909575a87ee42583c41bff22e64d15 Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 25 Apr 2024 16:06:02 +0200 Subject: [PATCH] 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 --- src/interfaces/requests/IReqLogin.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/interfaces/requests/IReqLogin.ts diff --git a/src/interfaces/requests/IReqLogin.ts b/src/interfaces/requests/IReqLogin.ts new file mode 100644 index 0000000..4649dfa --- /dev/null +++ b/src/interfaces/requests/IReqLogin.ts @@ -0,0 +1,4 @@ +export interface IReqLogin { + username: string; + password: string; +} \ No newline at end of file