package dto type CreateEntryRequest struct { Title string `json:"title"` Kind string `json:"kind"` Url string `json:"url"` Description string `json:"description"` } type UpdateEntryRequest struct { Id int64 `json:"id"` Kind string `json:"kind"` } type DeleteEntryRequest struct { Id int64 `json:"id"` } type GetEntryRequest struct { Url string `json:"url"` }