mirror of
https://github.com/bitwarden/server
synced 2026-01-28 23:36:12 +00:00
14 lines
388 B
C#
14 lines
388 B
C#
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>
|
|
[EncryptedString]
|
|
[EncryptedStringLength(1000)]
|
|
public string? DefaultUserCollectionName { get; set; }
|
|
}
|