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