using System.ComponentModel.DataAnnotations; using Bit.Api.AdminConsole.Models.Request.Organizations; using Bit.Api.Tools.Models.Request; using Bit.Api.Vault.Models.Request; namespace Bit.Api.Auth.Models.Request.Accounts; public class UpdateKeyRequestModel { [Required] [StringLength(300)] public string MasterPasswordHash { get; set; } [Required] public string Key { get; set; } [Required] public string PrivateKey { get; set; } public IEnumerable Ciphers { get; set; } public IEnumerable Folders { get; set; } public IEnumerable Sends { get; set; } public IEnumerable EmergencyAccessKeys { get; set; } public IEnumerable ResetPasswordKeys { get; set; } }