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.
17 lines
535 B
17 lines
535 B
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"`
|
|
}
|