Example #1
0
 public MetricRangeRule(int id, string metricName, int fromValue, int toValue, ChallengeHint hint) : this()
 {
     Id         = id;
     MetricName = metricName;
     FromValue  = fromValue;
     ToValue    = toValue;
     Hint       = hint;
 }
Example #2
0
 public bool Equals(ChallengeHint hint)
 {
     return(Id.Equals(hint.Id));
 }
Example #3
0
 public BasicNameChecker(List <string> bannedWords, List <string> requiredWords, ChallengeHint hint) : this()
 {
     BannedWords   = bannedWords;
     RequiredWords = requiredWords;
     Hint          = hint;
 }