21 lines
540 B
C#
21 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Umbraco.Core.Models.Entities;
|
|
using Umbraco.Core.Models.Membership;
|
|
|
|
namespace Umbraco.Core.Models
|
|
{
|
|
public interface IMember : IContentBase, IMembershipUser, IHaveAdditionalData
|
|
{
|
|
/// <summary>
|
|
/// String alias of the default ContentType
|
|
/// </summary>
|
|
string ContentTypeAlias { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the ContentType used by this content object
|
|
/// </summary>
|
|
IMemberType ContentType { get; }
|
|
}
|
|
}
|