Your question is not affected by your UML Deisgn Software, it's a more general U.M.L. question.
Altought UML Design Software is very helpful, I strongly suggest to try UML diagrams, from the whiteboard / notebook, point of view.
And, later, represent those diagrams, in your the software tool of your choice.
Since your classes descend from "BaseClass", and support "BaseInterface", remember that supporting one or more interfaces, it's also inhereted, by subclasses.
..................................................
..+------------------+......+------------------+..
..| BaseClass +--(o--+ BaseInterface |..
..+------------------+......+------------------+..
..| [+] SomeProperty |............................
..+--------+---------+............................
...........|......................................
...........|......................................
...........^......................................
........../.\.....................................
........./...\....................................
........+-----+...................................
...........|......................................
...........|................+------------------+..
...........+----------------+ AChildClass |..
...........|................+------------------+..
...........|......................................
...........|................+------------------+..
...........+----------------+ BChildClass |..
............................+------------------+..
...........|......................................
...........|................+------------------+..
...........+----------------+ CChildClass |..
............................+------------------+..
..................................................
In this example: "AChildClass", "BChildClass" and, "CChildClass", that are descendants of "BaseClass", inhereted the "SomeProperty" property. But, also inhereted support of the "BaseInterface" interface.
Most programming languages support this feature, altought, I remember watching some programming language, where the same interface support, had to be explicitly declared in each class.
Cheers.