예제 #1
0
 public static bool IsRankedMatch(this MatchDetailsClientModel model)
 {
     if (model.Ban1.IsNull() || model.Ban2.IsNull() || model.Ban3.IsNull() || model.Ban4.IsNull())
     {
         return(false);
     }
     return(true);
 }
예제 #2
0
 public static bool IsNotRankedMatch(this MatchDetailsClientModel model)
 {
     return(!IsRankedMatch(model));
 }