7 lines
162 B
Go
7 lines
162 B
Go
package requests
|
|
|
|
type PutPostRequest struct {
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
Content string `json:"content"`
|
|
}
|