Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save NickDiMucci/94ce22e6081e8befcf75 to your computer and use it in GitHub Desktop.
Save NickDiMucci/94ce22e6081e8befcf75 to your computer and use it in GitHub Desktop.
using strange.extensions.mediation.impl;
[Mediates(typeof($VIEW$))]
public class $MEDIATOR$ : Mediator
{
[Inject]
public $VIEW$ view { get; set; }
public override void OnRegister()
{
base.OnRegister();
}
public override void OnRemove()
{
base.OnRemove();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment