IndexViewModel.cs 514 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Identity;
  6. namespace Winsoft.GOV.XF.WXCore.Models.ManageViewModels
  7. {
  8. public class IndexViewModel
  9. {
  10. public bool HasPassword { get; set; }
  11. public IList<UserLoginInfo> Logins { get; set; }
  12. public string PhoneNumber { get; set; }
  13. public bool TwoFactor { get; set; }
  14. public bool BrowserRemembered { get; set; }
  15. }
  16. }