using System; using System.Collections; using System.Linq; using Flurl; namespace Infrastructure.Extensions { public static class UrlExtensions { public static string SetParam(this string url, string key, object value) { return url.SetQueryParam(key, value); } public static string RemoveParam(this string url, string key) { return url.RemoveQueryParam(key); } } }