From cdbaf582532c343fb7450306420b9b4a97eab850 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Tue, 1 Aug 2017 23:53:27 +0200 Subject: [PATCH] Add Login class. --- src/login/login.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/login/login.ts diff --git a/src/login/login.ts b/src/login/login.ts new file mode 100644 index 0000000..3424c59 --- /dev/null +++ b/src/login/login.ts @@ -0,0 +1,6 @@ +// vim: set tw=80 ts=2 sw=2 sts=2: + +export class Login { + email: string; + password: string; +}