Files
linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/IRouteWithArea.cs

10 lines
126 B
C#
Raw Normal View History

namespace System.Web.Mvc {
using System;
public interface IRouteWithArea {
string Area { get; }
}
}