package domain import "time" // UserPreferences represents a user's stored preferences. type UserPreferences struct { UserID string Preferences map[string]any CreatedAt time.Time UpdatedAt time.Time }