mirror of
https://github.com/bitwarden/server
synced 2025-12-17 00:33:23 +00:00
- Revoking users when enabling single org and 2fa policies. - Updated emails sent when users are revoked via 2FA or Single Organization policy enablement Co-authored-by: Matt Bishop <mbishop@bitwarden.com> Co-authored-by: Rui Tomé <108268980+r-tome@users.noreply.github.com>
11 lines
224 B
C#
11 lines
224 B
C#
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.AdminConsole.Models.Data;
|
|
|
|
public interface IActingUser
|
|
{
|
|
Guid? UserId { get; }
|
|
bool IsOrganizationOwnerOrProvider { get; }
|
|
EventSystemUser? SystemUserType { get; }
|
|
}
|