using Mirea.Api.Dto.Common;
using System;
namespace Mirea.Api.Dto.Responses;
///
/// Represents the response containing information about available OAuth providers.
///
public class AvailableProvidersResponse
{
///
/// Gets or sets the name of the OAuth provider.
///
public required string ProviderName { get; set; }
///
/// Gets or sets the enum value representing the OAuth provider.
///
public OAuthProvider Provider { get; set; }
///
/// Gets or sets the redirect URI for the OAuth provider.
///
public required Uri Redirect { get; set; }
}