using System; namespace FrontendRouting { [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] public class FeRouteAttribute : Attribute { public string Path { get; } public FeRouteAttribute(string path) => Path = path; } }