1
0
Fork 0
Learning-GoLang/simple-blog/server/model/blog.go

9 lines
163 B
Go
Raw Normal View History

2024-07-19 20:17:00 +00:00
package model
type Blog struct {
ID int `json:"id"`
Title string `json:"title"`
CoverURL string `json:"coverURL"`
Body string `json:"body"`
}