IWeChatPayParser.cs 216 B

123456789
  1. namespace Essensoft.AspNetCore.Payment.WeChatPay.Parser
  2. {
  3. public interface IWeChatPayParser<T> where T : WeChatPayObject
  4. {
  5. T Parse(string body);
  6. T Parse(string body, string data);
  7. }
  8. }