RemoveLoginViewModel.cs 368 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace Winsoft.GOV.XF.WXCore.Models.ManageViewModels
  7. {
  8. public class RemoveLoginViewModel
  9. {
  10. public string LoginProvider { get; set; }
  11. public string ProviderKey { get; set; }
  12. }
  13. }