* bump version to 15.1.0 * V15 Fixed the failing smoke tests in the pipeline v15 (#17158) * Fixed the failing tests of Member Group due to UI changes * Fixed the failing tests of Member due to UI changes * Fixed the failing tests of User due to UI changes * Fixed failing tests for Dictionary and Document Type * Updated tests due to test helper changes * Bumped version * Updated assert steps due to the response changes * Updated tests due to api helper changes * Updated tests due to UI changes * Fixed tests for delete partial view * Fixed tests * Added more waits * Updated assert steps * Fixed failing tests for Block Grid and Media * Added more waits * Added skip tests * Removed waits time * Updated assertion steps for User * Added todo * Updated tests due to api helper changes * Bumped version * Added skip tests * Fetch sortOrder for each navigationNode * Update NavigationNode to have sortOrder and change Parent and Children props to keys instead of NavigationNodes * Consider sortOrder when building the navigation structures * Renaming tests * Adding tests for items being the last in structure when added, moved, etc. * Updating names * Cleanup * Updating cache refreshers with changes due to sorting * Refactoring due to sorting changes and resolving key to NavigationNode * Removing sortOrder params from test as they are calculated automatically * Adding content and media integration tests to test sorting functionality * Adding sortOrder param for special case when adding new nodes * Adding new UpdateSortOrder to INavigationManagementService * Revert "V15 Fixed the failing smoke tests in the pipeline v15 (#17158)" This reverts commit31399c3b15. * Revert "bump version to 15.1.0" This reverts commit5e4d15be* Fix revert * Add sort order when creating media --------- Co-authored-by: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Co-authored-by: Nhu Dinh <150406148+nhudinh0309@users.noreply.github.com> Co-authored-by: Bjarke Berg <mail@bergmania.dk>
30 lines
751 B
C#
30 lines
751 B
C#
namespace Umbraco.Cms.Core.Models;
|
|
|
|
public interface INavigationModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the integer identifier of the entity.
|
|
/// </summary>
|
|
int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Guid unique identifier of the entity.
|
|
/// </summary>
|
|
Guid Key { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the integer identifier of the parent entity.
|
|
/// </summary>
|
|
int ParentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the sort order of the entity.
|
|
/// </summary>
|
|
int SortOrder { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this entity is in the recycle bin.
|
|
/// </summary>
|
|
bool Trashed { get; set; }
|
|
}
|