You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
747 B
18 lines
747 B
package models
|
|
|
|
import "time"
|
|
|
|
// A Story is user content that does not have a wiki-suitable format. Documents, new stories, short stories, and so on.
|
|
// The story model is a container for multiple chapters this time, in contrast to the previous version.
|
|
type Story struct {
|
|
ID string `bson:"_id"`
|
|
Author string `bson:"author"`
|
|
Name string `bson:"name"`
|
|
Category StoryCategory `bson:"category"`
|
|
Open bool `bson:"open"`
|
|
Listed bool `bson:"listed"`
|
|
Tags []Tag `bson:"tags"`
|
|
CreatedDate time.Time `bson:"createdDate"`
|
|
FictionalDate time.Time `bson:"fictionalDate,omitempty"`
|
|
UpdatedDate time.Time `bson:"updatedDate"`
|
|
}
|