mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-08 19:39:27 +02:00
14 lines
207 B
C#
14 lines
207 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DiscordApp.Enums
|
|
{
|
|
public enum NitroSubscription
|
|
{
|
|
None = 0,
|
|
Classic = 1,
|
|
Regular = 2
|
|
}
|
|
}
|