How to place a class into a namespace

Hello,

I am new to Monkey C and still learning. Currently I failling with a namespace issue. My goal is to place my new class "CustomArc" under WatchUI.Drawable.

CustomeArc.mc:
class CustomArc extends WatchUi.Drawable {
  // doing some fancy stuff}}

This is ending up in the situation, that CustomArc is directly under $.

I would prefer to have $.WatchUi.Drawable.CustomArc and do in my View.mc:

var ringSteps = View.findDrawableById("RingSteps") as WatchUi.Drawable.CustomArc;

What is the best way to get to that?

Thanks for your support :-)