thread-master/backend/internal/model/style_preset/domain/entity/preset.go

18 lines
548 B
Go
Raw Normal View History

2026-06-30 09:10:23 +00:00
package entity
const CollectionName = "style_presets"
type Preset struct {
ID string `bson:"_id"`
TenantID string `bson:"tenant_id"`
OwnerUID string `bson:"owner_uid"`
PersonaID string `bson:"persona_id"`
Name string `bson:"name"`
Tone string `bson:"tone,omitempty"`
CTA []string `bson:"cta,omitempty"`
BannedWords []string `bson:"banned_words,omitempty"`
Notes string `bson:"notes,omitempty"`
CreateAt int64 `bson:"create_at"`
UpdateAt int64 `bson:"update_at"`
}