diff options
Diffstat (limited to 'api/dto/entry.go')
| -rw-r--r-- | api/dto/entry.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/api/dto/entry.go b/api/dto/entry.go new file mode 100644 index 0000000..85e39f3 --- /dev/null +++ b/api/dto/entry.go @@ -0,0 +1,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"` +} |
