Files
PL_JusticeBot/Types/PaymentData.cs
Дмитрий Шиманский 9a8a4cad5d add discord bot
change net6.0 net7.0
2023-10-26 11:35:42 +03:00

10 lines
167 B
C#

namespace DiscordApp.Types
{
public class PaymentData
{
public int Price;
public string RedirectUrl;
public string Message;
}
}