using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DistributedGA.Core.Domain { public class MessageRecieveEventArgs : EventArgs { public int val; public SolutionInfo[] Population { get; set; } public PeerInfo Sender { get; set; } } }