aboutsummaryrefslogtreecommitdiffhomepage
path: root/model/integration.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/integration.go')
-rw-r--r--model/integration.go14
1 files changed, 14 insertions, 0 deletions
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
+}