1
0
Fork 0
Learning-GoLang/simple-blog/server/model/blog.go
2024-07-19 22:17:00 +02:00

8 lines
163 B
Go

package model
type Blog struct {
ID int `json:"id"`
Title string `json:"title"`
CoverURL string `json:"coverURL"`
Body string `json:"body"`
}