mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-11-15 11:37:34 +01:00
8 lines
177 B
C#
8 lines
177 B
C#
using VoidCat.Model.Paywall;
|
|
|
|
namespace VoidCat.Services.Abstractions;
|
|
|
|
public interface IPaywallFactory
|
|
{
|
|
ValueTask<IPaywallProvider> CreateProvider(PaymentServices svc);
|
|
} |