2014-02-12 17:14:16 +11:00
|
|
|
|
using System.Collections.Generic;
|
2018-01-15 11:32:30 +01:00
|
|
|
|
using Umbraco.Core.Models.Entities;
|
2014-02-10 19:35:32 +11:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Represents a member type
|
|
|
|
|
|
/// </summary>
|
2018-01-15 15:54:06 +01:00
|
|
|
|
public interface IMemberGroup : IEntity, IRememberBeingDirty, IHaveAdditionalData
|
2014-02-10 19:35:32 +11:00
|
|
|
|
{
|
2014-02-10 19:48:16 +11:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The name of the member group
|
|
|
|
|
|
/// </summary>
|
2014-02-10 19:35:32 +11:00
|
|
|
|
string Name { get; set; }
|
2014-02-10 19:48:16 +11:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Profile of the user who created this Entity
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
int CreatorId { get; set; }
|
2014-02-10 19:35:32 +11:00
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|