mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 10:08:57 +00:00
11 lines
272 B
C#
11 lines
272 B
C#
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Microsoft.AspNetCore.SpaServices.Prerendering
|
|
{
|
|
public class RenderToStringResult
|
|
{
|
|
public JObject Globals { get; set; }
|
|
public string Html { get; set; }
|
|
public string RedirectUrl { get; set; }
|
|
}
|
|
} |