Merge pull request #249 from pcc/xgetinputfocus
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / IViewDataContainer.cs
1 namespace System.Web.Mvc {
2     using System.Diagnostics.CodeAnalysis;
3
4     public interface IViewDataContainer {
5         [SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly", Justification = "This is the mechanism by which the ViewPage / ViewUserControl get their ViewDataDictionary objects.")]
6         ViewDataDictionary ViewData { get; set; }
7     }
8 }