namespace Bit.Core.Vault.Models.Data; /// /// Data model that represents a User and the associated cipher for a security task. /// public class UserSecurityTaskCipher { /// /// The user's Id. /// public Guid UserId { get; set; } /// /// The user's email. /// public string Email { get; set; } /// /// The cipher Id of the security task. /// public Guid CipherId { get; set; } /// /// The Id of the security task. /// public Guid TaskId { get; set; } }