From 567ced3feb9c00fa5eaf5bdbc0207b9d8e70e83a Mon Sep 17 00:00:00 2001 From: esheteda67206 Date: Thu, 20 Dec 2018 14:43:22 +0100 Subject: [PATCH] commit --- src/Account.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/Account.java diff --git a/src/Account.java b/src/Account.java new file mode 100644 index 0000000..71acc74 --- /dev/null +++ b/src/Account.java @@ -0,0 +1,12 @@ +public class Account { + public Person owner; + public String email; + + + public void accountErstellen(Person p, String e_email){ + + + + } + +}