This commit is contained in:
Mih4n
2023-10-26 19:01:00 +03:00
parent 2439316b04
commit 99503e23cc
31 changed files with 1 additions and 291 deletions

9
Types/PaymentData.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace spworlds.Types;
public class PaymentData
{
public int Amount;
public string RedirectUrl;
public string WebHookUrl;
public string Data;
}