1
0
mirror of https://github.com/bitwarden/server synced 2026-02-26 09:23:28 +00:00

last few changes.

This commit is contained in:
Jared McCannon
2026-01-23 15:04:26 -06:00
parent b3e1633526
commit bf7e903959
3 changed files with 10 additions and 3 deletions

View File

@@ -1,9 +1,13 @@
namespace Bit.Api.AdminConsole.Models.Request.Organizations;
using Bit.Core.Utilities;
namespace Bit.Api.AdminConsole.Models.Request.Organizations;
public class OrganizationUserRestoreRequest
{
/// <summary>
/// This is the encrypted default collection name to be used for restored users if required
/// </summary>
public string DefaultUserCollectionName { get; set; } = string.Empty;
[EncryptedString]
[EncryptedStringLength(1000)]
public string? DefaultUserCollectionName { get; set; }
}