mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-11-15 11:37:34 +01:00
12 lines
306 B
C#
12 lines
306 B
C#
using VoidCat.Model.Paywall;
|
|
|
|
namespace VoidCat.Services.Abstractions;
|
|
|
|
public interface IPaywallStore
|
|
{
|
|
ValueTask<PaywallOrder?> GetOrder(Guid id);
|
|
ValueTask SaveOrder(PaywallOrder order);
|
|
|
|
ValueTask<PaywallConfig?> GetConfig(Guid id);
|
|
ValueTask SetConfig(Guid id, PaywallConfig config);
|
|
} |