Custom DataType to use inside blueprint

I have this class inside my C++ code


class TArrayBool {
public:
    TArray<bool> BoolRow;
    inline bool& operator](int Column) { return BoolRow[Column]; }
};

and I would like for it to be visible inside blueprint. There is a way to achieve that?