Hi.
I cannot see any included source code in your initial question so I cannot give you a great answer.
My "guess" is that you need to look at the sender property to see which object raised the event. However, if both objects are just sending "this" as an object type, then perhaps you can inspect the tag (message) you are sending in the event args. Once you know the object type, you can cast the sender object as the original type to extract the unique properties.
I don't have much respect for answers that tell the OPs to go somewhere else for answer, but I did write up a useful blog article explaining how to use delegates and events. You can read it here:
https://www.intertech.com/c-sharp-tutorial-understanding-c-events/
Best wishes and good luck.