using System;
namespace Kean.Infrastructure.Soap
{
///
/// 指示 Soap 的路由路径
///
[AttributeUsage(AttributeTargets.Class)]
public class RouteAttribute : Attribute
{
///
/// 初始化 Kean.Infrastructure.Soap.RouteAttribute 类的新实例
///
/// 路由路径
public RouteAttribute(string path) =>
Path = path;
///
/// 路由路径
///
public string Path { get; set; }
}
}