Free cookie consent management tool by TermsFeed Policy Generator

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

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

Upload des Projekts letztendlich, trotz buggendes Clients...

File size: 364 bytes
RevLine 
[13524]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace DistributedGA.Core.Domain
8{
9    public class MessageRecieveEventArgs : EventArgs
10    {
11        public int val;
12        public SolutionInfo[] Population { get; set; }
13        public PeerInfo Sender { get; set; }
14    }
15}
Note: See TracBrowser for help on using the repository browser.