10 lines
126 B
C#
Raw Normal View History

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