mirror of
https://github.com/bitwarden/server
synced 2025-12-11 13:53:40 +00:00
17 lines
401 B
C#
17 lines
401 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
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; }
|
|
}
|