V8: Support allowed types for MNTP member picker (#6524)

This commit is contained in:
Kenn Jacobsen
2019-10-14 14:34:33 +02:00
committed by Sebastiaan Janssen
parent 0d3e330b12
commit f6d00a177e
6 changed files with 115 additions and 53 deletions

View File

@@ -0,0 +1,7 @@
namespace Umbraco.Core.Models.Entities
{
public interface IMemberEntitySlim : IContentEntitySlim
{
}
}

View File

@@ -0,0 +1,13 @@
namespace Umbraco.Core.Models.Entities
{
public class MemberEntitySlim : EntitySlim, IMemberEntitySlim
{
public string ContentTypeAlias { get; set; }
/// <inheritdoc />
public string ContentTypeIcon { get; set; }
/// <inheritdoc />
public string ContentTypeThumbnail { get; set; }
}
}