package pgModels
// Source model
type Source struct {
BaseModel
DisplayName string
Domain string `gorm:"not null;unique"`
UserSources []UserSource `gorm:"foreignKey:SourceID"`
References []PostReference `gorm:"foreignKey:SourceID"`
}