Blazor Hybrid / .NET MAUI support

This commit is contained in:
Shaun Walker
2022-08-11 17:09:32 -04:00
parent cf2adc7f6a
commit f96129fa37
75 changed files with 2244 additions and 41 deletions

View File

@ -82,9 +82,15 @@ namespace Oqtane.Models
}
/// <summary>
/// Site-specific settings (only available on the server via HttpContext for security reasons)
/// Protocol for the request from which the alias was resolved (ie. http or https )
/// </summary>
//[NotMapped]
//public Dictionary<string, string> SiteSettings { get; set; }
[NotMapped]
public string Protocol { get; set; }
/// <summary>
/// Base Url for static resources (note that this will only be set for remote clients)
/// </summary>
[NotMapped]
public string BaseUrl { get; set; }
}
}