Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageContract.cs @ 13924

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

#2615:
delete unneeded project, appended code style

File size: 341 bytes
Line 
1using System;
2using System.ServiceModel;
3using DistributedGA.Core.Domain;
4
5namespace DistributedGA.Core.Interface {
6
7  [ServiceContract]
8  public interface IMessageContract {
9
10    [OperationContract]
11    void SendData(PeerInfo sender, byte[][] data);
12
13    event EventHandler<MessageRecieveEventArgs> MessageRecieved;
14  }
15}
Note: See TracBrowser for help on using the repository browser.