This commit is contained in:
yawaflua
2024-04-18 18:38:00 +03:00
parent 2a1317d393
commit 2df80a4c4b
14 changed files with 324 additions and 83 deletions

View File

@@ -1,8 +1,15 @@
namespace spworlds.Types;
public class Item
{
public string Name { get; set; }
public int Count { get; set; }
public int Price { get; set; }
public string? Comment { get; set; } = null;
}
public class PaymentData
{
public int Amount;
public Item[] Items;
public string RedirectUrl;
public string WebHookUrl;
public string Data;