Moved more abstractions of models

This commit is contained in:
Bjarke Berg
2019-05-27 10:16:07 +02:00
parent 489bb7f3e9
commit 85eb44ecc3
30 changed files with 14 additions and 45 deletions

View File

@@ -1,21 +0,0 @@
using System.Collections.Generic;
using Umbraco.Core.Models.Entities;
namespace Umbraco.Core.Models
{
/// <summary>
/// Represents a member type
/// </summary>
public interface IMemberGroup : IEntity, IRememberBeingDirty, IHaveAdditionalData
{
/// <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; }
}
}