Changed Url.QueryParams type to more general IDictionary<string, object>

This commit is contained in:
tmenier 2014-03-23 14:18:36 -05:00
parent 61203f0078
commit 97149657ac

View File

@ -18,7 +18,7 @@ namespace Flurl
/// <summary>
/// Collection of all query string parameters.
/// </summary>
public QueryParamCollection QueryParams { get; private set; }
public IDictionary<string, object> QueryParams { get; private set; }
/// <summary>
/// Constructs a Url object from a string.