I am working on an app where it retrieves all user data from the server in an object called, appropriately, User.
However, since this class is in a package, it needs to be in the same package on the client side.
The problem is that this is very impractical since the User classes are in different packages and I don’t want to create special packages just to accommodate this 1 class.
Is there any remedy to this problem?