mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-11-15 06:16:27 +01:00
Co-authored-by: Kieran <kieran@harkin.me> Reviewed-on: https://git.v0l.io/Kieran/void.cat/pulls/65
10 lines
183 B
C#
10 lines
183 B
C#
using VoidCat.Database;
|
|
|
|
namespace VoidCat.Services.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Store for payment configs
|
|
/// </summary>
|
|
public interface IPaymentStore : IBasicStore<Paywall>
|
|
{
|
|
} |