add discord bot

change net6.0 net7.0
This commit is contained in:
Дмитрий Шиманский
2023-10-26 11:35:42 +03:00
parent 7c6fafa9e6
commit 9a8a4cad5d
35 changed files with 1132 additions and 37 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace DiscordApp.Enums
{
public enum NitroSubscription
{
None = 0,
Classic = 1,
Regular = 2
}
}

11
Enums/Supporter.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace DiscordApp.Enums
{
public enum Supporter
{
None = 0,
FirstLvl = 1,
SecondLvl = 2,
ThirdLvl = 3
}
}

14
Enums/TransactionType.cs Normal file
View File

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

15
Enums/UserFlags.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace DiscordApp.Enums
{
public enum UserFlags
{
None = 0,
HypeSquadEvents = 4,
HouseBravery = 64,
HouseBrilliance = 128,
HouseBalance = 256
}
}

11
Enums/UserType.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace DiscordApp.Enums
{
public enum UserType
{
Player = 0,
Banned = 1,
Courier = 2,
Moderator = 3,
Admin = 4,
}
}