Starts creating the IMemberGroupService and supporting classes.

This commit is contained in:
Shannon
2014-02-10 19:48:16 +11:00
parent ffba271fd0
commit 1ca950f721
12 changed files with 62 additions and 15 deletions

View File

@@ -7,6 +7,14 @@ namespace Umbraco.Core.Models
/// </summary>
public interface IMemberGroup : IAggregateRoot
{
/// <summary>
/// The name of the member group
/// </summary>
string Name { get; set; }
/// <summary>
/// Profile of the user who created this Entity
/// </summary>
int CreatorId { get; set; }
}
}