void.cat/VoidCat/Services/Abstractions/IPaymentStore.cs

10 lines
183 B
C#
Raw Normal View History

using VoidCat.Database;
2022-09-07 14:52:40 +00:00
namespace VoidCat.Services.Abstractions;
/// <summary>
/// Store for payment configs
/// </summary>
public interface IPaymentStore : IBasicStore<Paywall>
2022-09-07 14:52:40 +00:00
{
}