Skip to content

Instantly share code, notes, and snippets.

@rasikag
Created September 24, 2018 01:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rasikag/9c7c54c0d1857fbd477862003e32ba52 to your computer and use it in GitHub Desktop.
Save rasikag/9c7c54c0d1857fbd477862003e32ba52 to your computer and use it in GitHub Desktop.
[HubName("ModeChangesUpdater")]
public class ModeChangesUpdateHub : Hub
{
private readonly CheckMode _checkMode;
public ModeChangesUpdateHub() :
this(CheckMode.Instance)
{
}
public ModeChangesUpdateHub(CheckMode mode)
{
_checkMode = mode;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment