2021-09-08 17:01:34 +02:00
|
|
|
|
namespace Umbraco.Cms.Core.Models.ContentEditing
|
|
|
|
|
|
{
|
|
|
|
|
|
internal static class PropertyGroupBasicExtensions
|
|
|
|
|
|
{
|
2022-02-09 13:24:35 +01:00
|
|
|
|
public static string? GetParentAlias(this PropertyGroupBasic propertyGroup)
|
2021-09-08 17:01:34 +02:00
|
|
|
|
=> PropertyGroupExtensions.GetParentAlias(propertyGroup.Alias);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|