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 } }