This is essentially a new line of development branch that sought to reduce the overall complexity of the code base by trying to achieve the following goals.
Condense overuse of interfaces down to core class types with names as one would expect.
Remove interdependencies between components so that deserialization would become much easier and free the user the overhead of having to deserialize more than is needed.
Remove internal validation and complex modelling of components that attempted to mimic what Logix does internally. The library is not about recreating what you can do in Logix, but about querying and generating XML. Everything else is not important.
Provide a cleaner and easy to understand entry point API, with the ability to extend externally as required.
Removed all underdeveloped code, such as factories and builders, to focus on the core/primary task of just mapping XML to strongly typed objects.
This is essentially a new line of development branch that sought to reduce the overall complexity of the code base by trying to achieve the following goals.