mirror of
https://github.com/bitwarden/server
synced 2025-12-29 22:54:00 +00:00
14 lines
308 B
C#
14 lines
308 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Request;
|
|
|
|
public class AdminAuthRequestUpdateRequestModel
|
|
{
|
|
[EncryptedString]
|
|
public string EncryptedUserKey { get; set; }
|
|
|
|
[Required]
|
|
public bool RequestApproved { get; set; }
|
|
}
|