UnionPayNotifyResult.cs 295 B

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