Files
evening_detective_server/internal/services/scenarios_service/scenario.go
T
2026-07-13 23:48:20 +07:00

22 lines
418 B
Go

package scenarios_service
import (
"evening_detective_server/internal/modules/storytelling"
"evening_detective_server/internal/repos"
"time"
)
type Scenario struct {
ID int
Name string
Description *string
Image *string
Story *storytelling.Story
Author *repos.User
Status string
UpdatedAt time.Time
CreatedAt time.Time
PublishedAt *time.Time
IsDeleted bool
}