Skip to content

Instantly share code, notes, and snippets.

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 jfversluis/4ff8e9846de261a2360a85e4a088376e to your computer and use it in GitHub Desktop.
Save jfversluis/4ff8e9846de261a2360a85e4a088376e to your computer and use it in GitHub Desktop.
PropertyChanged.Fody PageModel
using PropertyChanged;
namespace propertychangedfodysample
{
[ImplementPropertyChanged]
public class propertychangedfodysampleWithFodyPageModel
{
public string SampleText {
get;
set;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment