ManageLoginsViewModel.cs 452 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Http.Authentication;
  6. using Microsoft.AspNetCore.Identity;
  7. namespace Winsoft.GOV.XF.WXCore.Models.ManageViewModels
  8. {
  9. public class ManageLoginsViewModel
  10. {
  11. public IList<UserLoginInfo> CurrentLogins { get; set; }
  12. public IList<AuthenticationDescription> OtherLogins { get; set; }
  13. }
  14. }