using System.Collections.Generic; using BTCPayServer.Data; namespace BTCPayServer.Models.ManageViewModels { public class TwoFactorAuthenticationViewModel { public int RecoveryCodesLeft { get; set; } public bool Is2faEnabled { get; set; } public List Credentials { get; set; } public string LoginCode { get; set; } } }