using System; namespace Infrastructure.Web.Mvc { [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] public class GeneratedControllerAttribute : Attribute { public GeneratedControllerAttribute(string route = null) { Route = route; } public string Route { get; set; } } }