13 lines
239 B
Go
13 lines
239 B
Go
package dto
|
|
|
|
type CreatePostRequest struct {
|
|
Title string `json:"title"`
|
|
URL string `json:"url"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type UpdatePostRequest struct {
|
|
Title string `json:"title"`
|
|
Content string `json:"content"`
|
|
}
|