using System.Collections.Generic;
using Umbraco.Core.Models.Entities;
namespace Umbraco.Core.Models
{
///
/// Represents a member type
///
public interface IMemberGroup : IEntity, IRememberBeingDirty
{
///
/// The name of the member group
///
string Name { get; set; }
///
/// Profile of the user who created this Entity
///
int CreatorId { get; set; }
///
/// Some entities may expose additional data that other's might not, this custom data will be available in this collection
///
IDictionary AdditionalData { get; }
}
}