diff --git a/Models.py b/Models.py index 3e715c1..2adb6ca 100644 --- a/Models.py +++ b/Models.py @@ -71,6 +71,8 @@ class Config(object): self.vendors = vendors class Vendor(object): - def __init__(self, username=None, password=None) -> None: + def __init__(self, username=None, password=None, source_notebook=None, source_section=None) -> None: self.username = username - self.password = password \ No newline at end of file + self.password = password + self.source_notebook = source_notebook + self.source_section = source_section \ No newline at end of file diff --git a/config.json b/config.json index 3cc8956..be72718 100644 --- a/config.json +++ b/config.json @@ -9,7 +9,15 @@ "vendors": { "simplenote": { "username": "me", - "password": "who" + "password": "who", + "source_notebook": "", + "source_section": "" + }, + "onenote": { + "username": "", + "password": "", + "source_notebook": "New notebook", + "source_section": "New Section" } } } \ No newline at end of file