13 lines
290 B
C#
13 lines
290 B
C#
namespace Controllers.Payment {
|
|
|
|
public interface IPayment {
|
|
|
|
// [ Success, ErrorMessage | ImpodentKey ]
|
|
public (bool, string) CreatePayment();
|
|
|
|
// [ Success, ErrorMessage ]
|
|
public (bool, string) TryPayment(string ImpodentKey, float Price);
|
|
|
|
}
|
|
|
|
} |