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

14 lines
244 B
C#

namespace DiscordApp.Enums
{
public enum TransactionType
{
Refill = 0,
UserDelivery = 1,
CourierDelivery = 2,
Withdraw = 3,
Order = 4,
Buy = 5,
Sell = 6,
Refund = 7
}
}