Header cleanup

This commit is contained in:
2025-07-21 22:15:33 -07:00
parent c16f8004d7
commit 3591edda89
5 changed files with 2 additions and 11 deletions
@@ -1,5 +1,3 @@
using BoredCareers.Entities;
namespace BoredCareers.Controllers.Payment {
public interface IPayment {
@@ -8,7 +6,7 @@ namespace BoredCareers.Controllers.Payment {
public static string _EndpointSecret = "";
public static string _PublicKey = "";
public Task ValidatePurchase(string WebHookData, string Headers);
public void ValidatePurchase(string WebHookData, string Headers);
}