1
0
mirror of https://github.com/bitwarden/server synced 2026-01-28 23:36:12 +00:00
Files
server/src/Api/AdminConsole/Models/Request/Organizations/OrganizationUserRestoreRequest.cs
Jared McCannon bf7e903959 last few changes.
2026-01-23 15:04:26 -06:00

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; }
}