BooleanMatcher.cs 170 B

12345678910
  1. namespace InABox.WPF
  2. {
  3. public class BooleanMatcher : AbstractMatcher<bool>
  4. {
  5. public BooleanMatcher()
  6. {
  7. Value = true;
  8. }
  9. }
  10. }