QPayNotifyResult.cs 341 B

1234567891011
  1. using Microsoft.AspNetCore.Mvc;
  2. namespace WebApplicationSample
  3. {
  4. public class QPayNotifyResult
  5. {
  6. private static readonly ContentResult _success = new ContentResult() { Content = "<xml><return_code>SUCCESS</return_code></xml>", ContentType = "text/xml" };
  7. public static IActionResult Success => _success;
  8. }
  9. }