1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-20 11:04:31 -05:00
bitwarden/src/Core/Billing/Commands/IStartSubscriptionCommand.cs

12 lines
249 B
C#

using Bit.Core.AdminConsole.Entities.Provider;
using Bit.Core.Models.Business;
namespace Bit.Core.Billing.Commands;
public interface IStartSubscriptionCommand
{
Task StartSubscription(
Provider provider,
TaxInfo taxInfo);
}