24 lines
721 B
C#
24 lines
721 B
C#
using Umbraco.Cms.Core.Cache;
|
|
|
|
namespace Umbraco.Cms.Core.Security
|
|
{
|
|
public class HybridBackofficeSecurityAccessor : HybridAccessorBase<IBackOfficeSecurity>, IBackOfficeSecurityAccessor
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="HybridBackofficeSecurityAccessor"/> class.
|
|
/// </summary>
|
|
public HybridBackofficeSecurityAccessor(IRequestCache requestCache)
|
|
: base(requestCache)
|
|
{ }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the <see cref="IBackOfficeSecurity"/> object.
|
|
/// </summary>
|
|
public IBackOfficeSecurity BackOfficeSecurity
|
|
{
|
|
get => Value;
|
|
set => Value = value;
|
|
}
|
|
}
|
|
}
|