using Bit.Core.Billing.Models;
namespace Bit.Core.Billing.Queries;
public interface IProviderBillingQueries
{
///
/// Retrieves a provider's billing subscription data.
///
/// The ID of the provider to retrieve subscription data for.
/// A object containing the provider's Stripe and their s.
/// This method opts for returning rather than throwing exceptions, making it ideal for surfacing data from API endpoints.
Task GetSubscriptionData(Guid providerId);
}