Add ContentKey to IBlockReference and obsolete ContentUdi (#17365)

This commit is contained in:
Kenn Jacobsen
2024-11-04 14:09:03 +01:00
committed by GitHub
parent 0505ff5316
commit b46f7bbf11

View File

@@ -18,7 +18,13 @@ public interface IBlockReference
/// <value>
/// The content UDI.
/// </value>
[Obsolete("Use ContentKey instead. Will be removed in V18.")]
Udi ContentUdi { get; }
/// <summary>
/// Gets the content key.
/// </summary>
public Guid ContentKey { get; set; }
}
/// <summary>