ExternalLoginProviderInfo.cs 531 B

12345678910111213141516171819202122
  1. using System;
  2. namespace VberAdmin.Authentication.External;
  3. public class ExternalLoginProviderInfo
  4. {
  5. public string Name { get; set; }
  6. public string ClientId { get; set; }
  7. public string ClientSecret { get; set; }
  8. public Type ProviderApiType { get; set; }
  9. public ExternalLoginProviderInfo(string name, string clientId, string clientSecret, Type providerApiType)
  10. {
  11. Name = name;
  12. ClientId = clientId;
  13. ClientSecret = clientSecret;
  14. ProviderApiType = providerApiType;
  15. }
  16. }