Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Core/Domain/MessageRecieveEventArgs.cs @ 13553

Last change on this file since 13553 was 13553, checked in by thasling, 8 years ago

changed a few method names and other refactoring

File size: 230 bytes
Line 
1using System;
2
3namespace DistributedGA.Core.Domain {
4  public class MessageRecieveEventArgs : EventArgs {
5    public int val;
6    public SolutionInfo[] data { get; set; }
7    public PeerInfo Sender { get; set; }
8  }
9}
Note: See TracBrowser for help on using the repository browser.