forked from go-shiori/shiori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.go
39 lines (35 loc) · 1.36 KB
/
model.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package model
// Tag is the tag for a bookmark.
type Tag struct {
ID int `db:"id" json:"id"`
Name string `db:"name" json:"name"`
NBookmarks int `db:"n_bookmarks" json:"nBookmarks,omitempty"`
Deleted bool `json:"-"`
}
// Bookmark is the record for an URL.
type Bookmark struct {
ID int `db:"id" json:"id"`
URL string `db:"url" json:"url"`
Title string `db:"title" json:"title"`
Excerpt string `db:"excerpt" json:"excerpt"`
Author string `db:"author" json:"author"`
Modified string `db:"modified" json:"modified"`
Content string `db:"content" json:"-"`
HTML string `db:"html" json:"html,omitempty"`
HasContent bool `db:"has_content" json:"hasContent"`
ImageURL string `json:"imageURL"`
Tags []Tag `json:"tags"`
CreateArchive bool `json:"createArchive"`
}
// Account is person that allowed to access web interface.
type Account struct {
ID int `db:"id" json:"id"`
Username string `db:"username" json:"username"`
Password string `db:"password" json:"password,omitempty"`
}
// LoginRequest is request from user to access web interface.
type LoginRequest struct {
Username string `json:"username"`
Password string `json:"password"`
Remember int `json:"remember"`
}