Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created June 6, 2019 15:34
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 bjoerntx/47a71a3133c966e7b4e5a5a7488dbdb7 to your computer and use it in GitHub Desktop.
Save bjoerntx/47a71a3133c966e7b4e5a5a7488dbdb7 to your computer and use it in GitHub Desktop.
public class CellFilterInstructions
{
public double? CompareValue { get; set; } = null;
public RelationalOperator? Operator { get; set; } = null;
public Color TrueColor { get; set; } = Color.White;
public Color FalseColor { get; set; } = Color.White;
public enum RelationalOperator
{
Equals = 0,
NotEqual,
LessThan,
GreaterThan,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment