20 lines
523 B
C#
20 lines
523 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Umbraco.Core.Models.EntityBase;
|
|
|
|
namespace Umbraco.Core.Models.Membership
|
|
{
|
|
/// <summary>
|
|
/// Represents a Group for a Backoffice User
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Should be internal until a proper user/membership implementation
|
|
/// is part of the roadmap.
|
|
/// </remarks>
|
|
[Serializable]
|
|
[DataContract(IsReference = true)]
|
|
internal class UserGroup : Entity
|
|
{
|
|
//Add UserCollection ?
|
|
}
|
|
} |