Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Dashboard/IAccessItem.cs
2018-06-29 19:52:40 +02:00

16 lines
355 B
C#

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