Merge pull request #249 from pcc/xgetinputfocus
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / IRouteWithArea.cs
1 namespace System.Web.Mvc {
2     using System;
3
4     public interface IRouteWithArea {
5
6         string Area { get; }
7
8     }
9 }