ASP MVC.NET - como ligar o KeyValuePair?

É possível vincular esse tipo de propriedade?

public KeyValuePair<string, string> Stuff { get; set; }

Eu tentei usar o código a seguir na exibição, mas não funciona:

<%=Html.Text("Stuff", Model.Stuff.Value)%>    
<%=Html.Hidden("Model.Stuff.Key", Model.Stuff.Key)%>

questionAnswers(4)

yourAnswerToTheQuestion