From 97149657ac9a5ce793a3e417261dcd4c864de325 Mon Sep 17 00:00:00 2001 From: tmenier Date: Sun, 23 Mar 2014 14:18:36 -0500 Subject: [PATCH] Changed Url.QueryParams type to more general IDictionary --- Flurl/Url.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flurl/Url.cs b/Flurl/Url.cs index 0e761c5..f6d6555 100644 --- a/Flurl/Url.cs +++ b/Flurl/Url.cs @@ -18,7 +18,7 @@ namespace Flurl /// /// Collection of all query string parameters. /// - public QueryParamCollection QueryParams { get; private set; } + public IDictionary QueryParams { get; private set; } /// /// Constructs a Url object from a string.