Merge remote-tracking branch 'upstream/dev' into Bootstrap

This commit is contained in:
Leigh Pointer
2025-05-30 16:06:19 +02:00
30 changed files with 502 additions and 243 deletions

View File

@ -43,7 +43,7 @@ namespace Oqtane.Models
public string Path { get; set; }
/// <summary>
/// Sorting order of the folder
/// Sorting order of the folder ** not used as folders are sorted in alphabetical order **
/// </summary>
public int Order { get; set; }

View File

@ -6,6 +6,8 @@ namespace Oqtane.Models
public string Message { get; set; }
public Result() {}
public Result(bool success)
{
Success = success;