blob: a835b2656e496b84d323d92b3debc7e7109f0abd (
plain)
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
52
|
package eventlogging
type ViewGrilData struct {
EventLoggerData
GrilID int `json:"grilId"`
}
type ViewListData struct {
EventLoggerData
ListID int `json:"listId"`
}
type CreateListData struct {
EventLoggerData
ListID int `json:"listId"`
Name string `json:"name"`
Description string `json:"description"`
}
type AddGrilToListData struct {
EventLoggerData
GrilID int `json:"grilId"`
ListID int `json:"listId"`
}
type DeleteGrilFromListData struct {
EventLoggerData
ListID int `json:"listId"`
GrilID int `json:"grilId"`
}
type DeleteListData struct {
EventLoggerData
ListID int `json:"listId"`
}
type EditListData struct {
EventLoggerData
ListID int `json:"listId"`
OldName string `json:"oldName"`
OldDescription string `json:"oldDescription"`
NewName string `json:"newName"`
NewDescription string `json:"newDescription"`
}
type ChangeGrilOrderData struct {
EventLoggerData
ListID int `json:"listId"`
GrilID int `json:"grilId"`
OldOrder int `json:"oldOrder"`
NewOrder int `json:"newOrder"`
}
|