public MatchmakeStopResult MatchmakeStop(MatchmakeStopRequest request)
 {
     // TODO: Reset state to none or forming
     return(new MatchmakeStopResult
     {
         Result = new ServiceResult <bool>
         {
             Data = true
         }
     });
 }
 public MatchmakeStopResult MatchmakeStop(MatchmakeStopRequest request)
 {
     return new MatchmakeStopResult
     {
         Result = new ServiceResult<bool>
         {
             Data = true
         }
     };
 }