mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
14 lines
396 B
C#
14 lines
396 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.AdminConsole.OrganizationFeatures.OrganizationUsers;
|
|
#nullable enable
|
|
|
|
public class DeleteUserValidationRequest
|
|
{
|
|
public Guid OrganizationId { get; init; }
|
|
public OrganizationUser? OrganizationUser { get; init; }
|
|
public User? User { get; init; }
|
|
public Guid DeletingUserId { get; init; }
|
|
public bool? IsManaged { get; init; }
|
|
}
|