add Platform property to SiteState and populate on both Web and .NET MAUI

This commit is contained in:
sbwalker
2024-02-26 14:12:52 -05:00
parent c20138c9fc
commit 553bbda769
5 changed files with 12 additions and 4 deletions

View File

@ -12,6 +12,7 @@ namespace Oqtane.Shared
public string AntiForgeryToken { get; set; } // passed from server for use in service calls on client
public string AuthorizationToken { get; set; } // passed from server for use in service calls on client
public string RemoteIPAddress { get; set; } // passed from server as cannot be reliably retrieved on client
public string Platform { get; set; }
public bool IsPrerendering { get; set; }
private dynamic _properties;