mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 11:43:22 +02:00
17 lines
407 B
Go
17 lines
407 B
Go
package article
|
|
|
|
import (
|
|
domain "RenewCMS/internal/domain/image"
|
|
"time"
|
|
)
|
|
|
|
type Article struct {
|
|
ID uint32 `json:"id"`
|
|
Title string `json:"title"`
|
|
Body string `json:"body"`
|
|
Images []*domain.Image `json:"images"`
|
|
IsOnline bool `json:"is_online"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|