Skip to content

Commit

Permalink
ui cleanup. Related to #205
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Jul 17, 2020
1 parent 2007e6d commit d74e0f5
Show file tree
Hide file tree
Showing 4 changed files with 1,412 additions and 1,341 deletions.
14 changes: 14 additions & 0 deletions Analogy/Types/DataTypes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,20 @@ public AnalogyPositionState(FormWindowState formWindowState, Point location, Siz
}

}
public class FilterCriteriaUIOption
{
public string DisplayMember { get; set; }
public string ValueMember { get; set; }
public bool CheckMember { get; set; }


public FilterCriteriaUIOption(string displayMember, string valueMember, bool checkMember)
{
DisplayMember = displayMember;
ValueMember = valueMember;
CheckMember = checkMember;
}
}
public enum DataSourceType
{
Client,
Expand Down
Loading

0 comments on commit d74e0f5

Please sign in to comment.