using System; namespace Vinno.FIS.Sonopost.WebApi { class WebApiControllerAttribute : Attribute { public string Name { get; } public WebApiControllerAttribute() : base() { } public WebApiControllerAttribute(string name) : base() { Name = name; } } class WebApiActionAttribute : Attribute { public string Name { get; } public WebApiActionAttribute() : base() { } public WebApiActionAttribute(string name) : base() { Name = name; } } }