using Microsoft.AspNetCore.Mvc; namespace Nop.Web.Framework.Mvc; /// /// Null JSON result /// public partial class NullJsonResult : JsonResult { /// /// Ctor /// public NullJsonResult() : base(null) { } }