aboutsummaryrefslogtreecommitdiffstats
path: root/api/dto/calendar.go
blob: 33da621677ca965a9d749260e4ebca0c74525d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package dto

type GetCalendarResponse struct {
	ID   int32  `json:"id"`
	Name string `json:"name"`
	Key  string `json:"key"`
	URL  string `json:"url"`
}

type CreateCalendarResponse struct {
	ID   int32  `json:"id"`
	Name string `json:"name"`
	Key  string `json:"key"`
	URL  string `json:"url"`
}