From ad0ebb9f4c5acebe79157f81165aeb3ac60203ab Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Mon, 14 Jul 2014 15:28:43 -0700 Subject: [PATCH] cr feedback --- src/Microsoft.AspNet.Routing/Template/TemplateValuesResult.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.Routing/Template/TemplateValuesResult.cs b/src/Microsoft.AspNet.Routing/Template/TemplateValuesResult.cs index 1876678fcb..25ee34a998 100644 --- a/src/Microsoft.AspNet.Routing/Template/TemplateValuesResult.cs +++ b/src/Microsoft.AspNet.Routing/Template/TemplateValuesResult.cs @@ -13,7 +13,7 @@ namespace Microsoft.AspNet.Routing.Template /// /// The set of values that will appear in the URL. /// - public Dictionary AcceptedValues { get; set; } + public IDictionary AcceptedValues { get; set; } /// /// The set of values that that were supplied for URL generation. @@ -26,6 +26,6 @@ namespace Microsoft.AspNet.Routing.Template /// Implicit (ambient) values which are invalidated due to changes in values lexically earlier in the /// route template are excluded from this set. /// - public Dictionary CombinedValues { get; set; } + public IDictionary CombinedValues { get; set; } } } \ No newline at end of file