12 lines
250 B
C#
12 lines
250 B
C#
using Umbraco.Core.Security;
|
|
|
|
namespace Umbraco.Core.Security
|
|
{
|
|
/// <summary>
|
|
/// The user manager for the back office
|
|
/// </summary>
|
|
public interface IBackOfficeUserManager : IUmbracoUserManager<BackOfficeIdentityUser>
|
|
{
|
|
}
|
|
}
|