using Bit.Core.Auth.Entities; using Bit.Core.Entities; using Bit.Core.Tools.Entities; using Bit.Core.Vault.Entities; namespace Bit.Core.Auth.Models.Data; public class RotateUserKeyData { public string MasterPasswordHash { get; set; } public string Key { get; set; } public string PrivateKey { get; set; } public IEnumerable Ciphers { get; set; } public IEnumerable Folders { get; set; } public IReadOnlyList Sends { get; set; } public IEnumerable EmergencyAccesses { get; set; } public IReadOnlyList OrganizationUsers { get; set; } public IEnumerable WebAuthnKeys { get; set; } }