package models import "time" // A Comment is a comment on a chapter. type Comment struct { ID string `bson:"id"` ChapterID string `bson:"chapterId"` Subject string `bson:"subject"` Author string `bson:"author"` CharacterName string `bson:"characterName"` CharacterID string `bson:"characterId"` FictionalDate time.Time `bson:"fictionalDate"` CreatedDate time.Time `bson:"createdDate"` EditedDate time.Time `bson:"editeddDate"` Source string `bson:"sources"` }