mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-09 20:09:31 +02:00
add discord bot
change net6.0 net7.0
This commit is contained in:
13
Enums/NitroSubscription.cs
Normal file
13
Enums/NitroSubscription.cs
Normal 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
11
Enums/Supporter.cs
Normal 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
14
Enums/TransactionType.cs
Normal 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
15
Enums/UserFlags.cs
Normal 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
11
Enums/UserType.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace DiscordApp.Enums
|
||||
{
|
||||
public enum UserType
|
||||
{
|
||||
Player = 0,
|
||||
Banned = 1,
|
||||
Courier = 2,
|
||||
Moderator = 3,
|
||||
Admin = 4,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user