diff --git a/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/PropertyValues.cs b/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/PropertyValues.cs index 8b2aef189a..a290d862cc 100644 --- a/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/PropertyValues.cs +++ b/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/PropertyValues.cs @@ -25,10 +25,10 @@ public PropertyValues() #endregion #region Properties - public Guid Id { get => GetValue(); set => SetValue(value); } + public string Id { get => GetValue(); set => SetValue(value); } [KeyProperty(nameof(Id))] - public override object Key { get => Id; set => Id = Guid.Parse(value.ToString()); } + public override object Key { get => Id; set => Id = value.ToString(); } #endregion #region Extension methods