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?
Having class named in the same way as the name space (package) may lead to a thought that class is central to the package. But if I get it correctly User is just a data object in your case.
As far as I see you have 2 options: