From 2356ddad28d50aacc8bbb3e020792d3b92f2fb4d Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Sat, 2 Dec 2017 19:32:14 -0800 Subject: Add Pinboard integration --- model/integration.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 model/integration.go (limited to 'model/integration.go') diff --git a/model/integration.go b/model/integration.go new file mode 100644 index 0000000..91a4595 --- /dev/null +++ b/model/integration.go @@ -0,0 +1,14 @@ +// Copyright 2017 Frédéric Guillot. All rights reserved. +// Use of this source code is governed by the Apache 2.0 +// license that can be found in the LICENSE file. + +package model + +// Integration represents user integration settings. +type Integration struct { + UserID int64 + PinboardEnabled bool + PinboardToken string + PinboardTags string + PinboardMarkAsUnread bool +} -- cgit v1.2.3