using Microsoft.AspNetCore.Mvc; namespace WebApplicationSample.Helpers { public class QPayNotifyResult { private static readonly ContentResult _success = new ContentResult { Content = "SUCCESS", ContentType = "text/xml" }; public static IActionResult Success => _success; } }