1
0
Fork 0

Add: blog model struct

This commit is contained in:
Aroy-Art 2024-07-19 22:17:00 +02:00
parent a51a0c4e12
commit 6b84f3aefa
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -0,0 +1,8 @@
package model
type Blog struct {
ID int `json:"id"`
Title string `json:"title"`
CoverURL string `json:"coverURL"`
Body string `json:"body"`
}