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