Hi guys!
This may be a silly question to ask but I am having an issue with keeping classes up-to-date across multiple projects. With my job I am trying to push out several different applications that all utilize specific classes but every time I need to implement a change for one application using one of these shared classes (the change would be in the class itself for the specified) I have to go and update all of the other applications using that same class because the class (example: ProductOrder) is technically viewed as different classes across the different applications (a different instance of the class's file for each application).
Is there a way that I can get a single class file to work across all of my different applications? I was thinking something like a reference but I don't know a lot about the ins and out of that.
Thanks!