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"` }