1 // Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
2 
3 namespace System.Web.Mvc
4 {
5     public class ViewTemplateUserControl<TModel> : ViewUserControl<TModel>
6     {
7         protected string FormattedModelValue
8         {
9             get { return ViewData.TemplateInfo.FormattedModelValue.ToString(); }
10         }
11     }
12 }
13