blob: 85e39f322c0cda6509059a0b7bb6fe3ce555ffdc (
plain)
1
2
3
4
5
6
7
8
9
|
package dto
type CreateEntryRequest struct {
Title string `json:"title"`
Kind string `json:"kind"`
Url string `json:"url"`
Description string `json:"description"`
Token string `json:"token"`
}
|