AlipayNotifyResult.cs 313 B

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