using System.Collections.Generic; namespace Umbraco.Core.Models.Membership { /// /// A readonly user group providing basic information /// public interface IReadOnlyUserGroup { string Name { get; } string Icon { get; } int Id { get; } int? StartContentId { get; } int? StartMediaId { get; } /// /// The alias /// string Alias { get; } /// /// The set of default permissions /// /// /// By default each permission is simply a single char but we've made this an enumerable{string} to support a more flexible permissions structure in the future. /// IEnumerable Permissions { get; set; } IEnumerable AllowedSections { get; } } }