An Azure function has a Queue trigger, and the data coming from the Queue is serialized Json...i.e., the web app serializes object of type DataType1 and writes it to the Queue. The Azure function has to be able to resolve the namespace for DataType1 so it can deserialize it for use in the function.
What is the best practice for doing this? Some sort of helper library that both projects reference, with IDataType1? Is there any other way?