narasiahli-be/app/module/custom_static_pages/response/custom_static_pages.respons...

15 lines
395 B
Go

package response
import "time"
type CustomStaticPagesResponse struct {
ID uint `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
Slug string `json:"slug"`
HtmlBody string `json:"htmlBody"`
IsActive bool `json:"isActive"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}