JDPayNotifyResult.cs 478 B

1234567891011121314
  1. using Microsoft.AspNetCore.Mvc;
  2. namespace WebApplicationSample.Helpers
  3. {
  4. public class JDPayNotifyResult
  5. {
  6. private static readonly ContentResult _success = new ContentResult { Content = "success", ContentType = "text/plain" };
  7. private static readonly ContentResult _ok = new ContentResult { Content = "ok", ContentType = "text/plain" };
  8. public static IActionResult Success => _success;
  9. public static IActionResult Ok => _ok;
  10. }
  11. }