Impliment soft-payments
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace Controllers.Payment {
|
||||
|
||||
public interface IPayment {
|
||||
|
||||
// [ Success, ErrorMessage | ImpodentKey ]
|
||||
public (bool, string) CreatePayment();
|
||||
|
||||
// [ Success, ErrorMessage ]
|
||||
public (bool, string) TryPayment(string ImpodentKey, float Price);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user