LianLianPayNotifyResult.cs 363 B

1234567891011
  1. using Microsoft.AspNetCore.Mvc;
  2. namespace WebApplicationSample
  3. {
  4. public class LianLianPayNotifyResult
  5. {
  6. private static readonly ContentResult _success = new ContentResult() { Content = "{\"ret_code\":\"0000\",\"ret_msg\":\"交易成功\"}", ContentType = "application/json" };
  7. public static IActionResult Success => _success;
  8. }
  9. }