Files
boredcareers/src/Server/Controllers/PaymentMethods/IPayment.cs
T
2025-07-21 22:15:33 -07:00

17 lines
366 B
C#

namespace BoredCareers.Controllers.Payment {
public interface IPayment {
public static PaymentType _PaymentType;
public static string _EndpointSecret = "";
public static string _PublicKey = "";
public void ValidatePurchase(string WebHookData, string Headers);
}
public enum PaymentType {
StripeIntent
}
}