In RestSharp 108 and below the RestClient could add common cookies to every call like this:
RestClient.CookieContainer.Add(new Cookie("hello", "hello", "/", _baseUrl.Host));
This is no longer the case in RestSharp 109. How can we add a seriers of cookies to every Request?