using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Bit.Api.Models.Request.Accounts { public class UpdateKeyRequestModel { [Required] [StringLength(300)] public string MasterPasswordHash { get; set; } [Required] public IEnumerable Ciphers { get; set; } [Required] public IEnumerable Folders { get; set; } public IEnumerable Sends { get; set; } [Required] public string PrivateKey { get; set; } [Required] public string Key { get; set; } } }