Files
AI-Stock-Trader/WebServer/Controllers/Payments/IPayments.cs
T

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