I'm designing a namespace to hold a set of classes that will handle user related tasks for a several different applications. (Log-in, authenticate etc)
The problem is the namespace will be called Fusion.User
but then it requires a class in that namespace that makes sense to call User
.
Should you have a class with the same name as the namespace? Or am I taking the wrong approach here?