Skip to content

Instantly share code, notes, and snippets.

@heytherewill
Created October 24, 2017 21:50
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 heytherewill/c50594ba52454bf3db4f6d59e516a5ca to your computer and use it in GitHub Desktop.
Save heytherewill/c50594ba52454bf3db4f6d59e516a5ca to your computer and use it in GitHub Desktop.
Code snippets for ".NET IL Weaving for those who know nothing about .NET IL Weaving"
namespace Woven
{
//BaseViewModel implements INotifyPropertyChanged
public sealed class LoginViewModel : BaseViewModel
{
public bool IsLoading { get; set; }
public string Email { get; set; }
public string Password { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment