using VoidCat.Database; namespace VoidCat.Services.Abstractions; /// /// Payment order store /// public interface IPaymentOrderStore : IBasicStore { /// /// Update the status of an order /// /// /// /// ValueTask UpdateStatus(Guid order, PaywallOrderStatus status); }