mirror of
https://github.com/yawaflua/spworlds-csharp-library.git
synced 2025-12-10 04:29:25 +02:00
16 lines
343 B
C#
16 lines
343 B
C#
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 Item[] Items;
|
|
public string RedirectUrl;
|
|
public string WebHookUrl;
|
|
public string Data;
|
|
} |