-
Notifications
You must be signed in to change notification settings - Fork 56
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 #926 from SubPointSolutions/dev
SPMeta2 v1.2.95-beta4, October 2016
- Loading branch information
Showing
78 changed files
with
5,877 additions
and
2,421 deletions.
There are no files selected for viewing
43 changes: 25 additions & 18 deletions
43
SPMeta2/SPMeta2.CSOM.Standard/Config/MetadataNavigationHierarchyConfig.cs
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 |
---|---|---|
@@ -1,18 +1,25 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
|
||
namespace SPMeta2.CSOM.Standard.Config | ||
{ | ||
public class MetadataNavigationHierarchyConfig | ||
{ | ||
public MetadataNavigationHierarchyConfig(Guid fieldId) | ||
{ | ||
this.FieldId = fieldId; | ||
} | ||
|
||
public Guid FieldId { get; set; } | ||
} | ||
} | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
|
||
namespace SPMeta2.CSOM.Standard.Config | ||
{ | ||
public class MetadataNavigationHierarchyConfig | ||
{ | ||
#region constructors | ||
public MetadataNavigationHierarchyConfig() | ||
{ | ||
|
||
} | ||
#endregion | ||
|
||
#region properties | ||
public Guid FieldId { get; set; } | ||
public string FieldType { get; set; } | ||
public string CachedName { get; set; } | ||
public string CachedDisplayName { get; set; } | ||
#endregion | ||
} | ||
} |
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
Oops, something went wrong.