-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote.go
More file actions
51 lines (40 loc) · 1.04 KB
/
note.go
File metadata and controls
51 lines (40 loc) · 1.04 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
package notes
import "errors"
type NoteList struct {
Id int `json:"id" db:"id"`
Title string `json:"title" db:"title" binding:"required"`
Description string `json:"description" db:"description"`
}
type UsersList struct {
IdUser int `json:"id_user"`
IdList int `json:"id_list"`
}
type NoteItem struct {
Id int `json:"id" db:"id"`
Title string `json:"title" db:"title"`
Body string `json:"body" db:"body" binding:"required"`
}
type ListsItem struct {
IdList int `json:"id_list"`
IdItem int `json:"id_item"`
}
type UpdateListInput struct {
Title *string `json:"title"`
Description *string `json:"description"`
}
func (i UpdateListInput) Validate() error {
if i.Title == nil && i.Description == nil {
return errors.New("update structure has no values")
}
return nil
}
type UpdateItemInput struct {
Title *string `json:"title"`
Body *string `json:"body"`
}
func (i UpdateItemInput) Validate() error {
if i.Title == nil && i.Body == nil {
return errors.New("update structure has no values")
}
return nil
}