| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Http.Authentication;
- using Microsoft.AspNetCore.Identity;
- namespace Winsoft.GOV.XF.WXCore.Models.ManageViewModels
- {
- public class ManageLoginsViewModel
- {
- public IList<UserLoginInfo> CurrentLogins { get; set; }
- public IList<AuthenticationDescription> OtherLogins { get; set; }
- }
- }
|