15 lines
395 B
Go
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"`
|
|
}
|