-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3094 from gautamdsheth/feature/2519
Feature #2519: open in new tab for navigation links
- Loading branch information
Showing
5 changed files
with
95 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace PnP.PowerShell.Commands.Model.SharePoint | ||
{ | ||
public sealed class NavigationNode | ||
{ | ||
public List<Guid> AudienceIds { get; set; } | ||
public int CurrentLCID { get; set; } | ||
public List<object> CustomProperties { get; set; } | ||
public string FriendlyUrlSegment { get; set; } | ||
public bool IsDeleted { get; set; } | ||
public bool IsHidden { get; set; } | ||
public bool IsTitleForExistingLanguage { get; set; } | ||
public string Key { get; set; } | ||
public List<object> Nodes { get; set; } | ||
public int NodeType { get; set; } | ||
public bool? OpenInNewWindow { get; set; } | ||
public string SimpleUrl { get; set; } | ||
public string Title { get; set; } | ||
public List<object> Translations { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace PnP.PowerShell.Commands.Model.SharePoint | ||
{ | ||
public sealed class NavigationNodeCollection | ||
{ | ||
public List<object> AudienceIds { get; set; } | ||
public string FriendlyUrlPrefix { get; set; } | ||
public bool IsAudienceTargetEnabledForGlobalNav { get; set; } | ||
public List<NavigationNode> Nodes { get; set; } | ||
public string SimpleUrl { get; set; } | ||
public string SPSitePrefix { get; set; } | ||
public string SPWebPrefix { get; set; } | ||
public string StartingNodeKey { get; set; } | ||
public string StartingNodeTitle { get; set; } | ||
public DateTime Version { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters