namespace Umbraco.Core.Configuration.Dashboard { public interface IAccessItem { /// /// This can be grant, deny or grantBySection /// AccessType Action { get; set; } /// /// The value of the action /// string Value { get; set; } } }