mirror of
https://github.com/bitwarden/server.git
synced 2026-06-01 01:55:55 -05:00
15 lines
598 B
C#
15 lines
598 B
C#
namespace Bit.Seeder.Options;
|
|
|
|
/// <summary>
|
|
/// Optional overrides applied on top of the organization's initial values.
|
|
/// Null properties mean "leave the value unchanged from <see cref="Bit.Seeder.Factories.OrganizationSeeder.Create"/>".
|
|
/// </summary>
|
|
public sealed record OrganizationOverrides
|
|
{
|
|
public bool? UseAutomaticUserConfirmation { get; init; }
|
|
public bool? AllowAdminAccessToAllCollectionItems { get; init; }
|
|
public bool? LimitItemDeletion { get; init; }
|
|
public bool? LimitCollectionCreation { get; init; }
|
|
public bool? LimitCollectionDeletion { get; init; }
|
|
}
|