using System; namespace VberAdmin.Authentication.External; public class ExternalLoginProviderInfo { public string Name { get; set; } public string ClientId { get; set; } public string ClientSecret { get; set; } public Type ProviderApiType { get; set; } public ExternalLoginProviderInfo(string name, string clientId, string clientSecret, Type providerApiType) { Name = name; ClientId = clientId; ClientSecret = clientSecret; ProviderApiType = providerApiType; } }