123456789101112131415161718192021 |
- using System;
- using Aop.Api.Request;
- namespace Aop.Api.Parser
- {
-
-
-
-
- public interface IAopParser<T> where T : AopResponse
- {
-
-
-
-
-
- T Parse(string body,string charset);
- SignItem GetSignItem(IAopRequest<T> request, T response);
- }
- }
|