using System; namespace RobotLib.Communication { public class SubscribedMsgArrivedEventArgs : EventArgs { public string Topic { get; } public string Message { get; } public SubscribedMsgArrivedEventArgs(string topic, string message) { Topic = topic; Message = message; } } }