1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace JsonRPC4.Router
- {
- public class RpcRouteAttribute : Attribute
- {
- public string RouteName { get; }
- public RpcRouteAttribute(string routeName = null)
- {
- this.RouteName = ((routeName != null) ? routeName.Trim() : null);
- }
- }
- }
|