Last active
March 23, 2016 16:51
-
-
Save lukasz-pyrzyk/bebf4b2802406bd6f7c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
namespace XGain | |
{ | |
public class StartArgs : EventArgs | |
{ | |
public StartArgs(ProcessingType processingType, EndPoint localEndpoint) | |
{ | |
ProcessingType = processingType; | |
LocalEndpoint = localEndpoint; | |
} | |
public EndPoint LocalEndpoint { get; } | |
public ProcessingType ProcessingType { get; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment