Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created June 16, 2017 02:56
Show Gist options
  • Save rdelrosario/6a1652d5cd4ed90e1ed629ac98373df6 to your computer and use it in GitHub Desktop.
Save rdelrosario/6a1652d5cd4ed90e1ed629ac98373df6 to your computer and use it in GitHub Desktop.
Filter Model
using System;
using PropertyChanged;
using System.ComponentModel;
using ImageFilterSample.Helpers;
namespace ImageFilterSample.Models
{
public class Filter : INotifyPropertyChanged
{
public FilterType Type { get; set; }
public string Name { get; set; }
public bool IsSelected { get; set; } = false;
public event PropertyChangedEventHandler PropertyChanged;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment