Skip to content

Instantly share code, notes, and snippets.

@lukasz-pyrzyk
Last active March 23, 2016 16:51
Show Gist options
  • Save lukasz-pyrzyk/bebf4b2802406bd6f7c6 to your computer and use it in GitHub Desktop.
Save lukasz-pyrzyk/bebf4b2802406bd6f7c6 to your computer and use it in GitHub Desktop.
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