/// <summary>
 /// Метод для упрощенного создания объектов ответа и токена.
 /// </summary>
 public static void New(out PathRequestToken <TPoint> token, out PathResponse <TPoint> response)
 {
     token    = new PathRequestToken <TPoint>();
     response = new PathResponse <TPoint>(token);
 }
 public PathResponse(PathRequestToken <TPoint> token)
 {
     _token = token;
 }