Files
2026-03-11 14:34:09 -07:00

16 lines
411 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);
// [ Success, ErrorMessage ]
public (bool, string) TrySell(string ImpodentKey, float Price);
}
}