Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions NetCord/SubscriptionStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ public enum SubscriptionStatus : byte
Active = 0,

/// <summary>
/// Subscription is active but will not renew.
/// Subscription is inactive and not being charged.
/// </summary>
Ending = 1,
Inactive = 1,

/// <summary>
/// Subscription is inactive and not being charged.
/// Subscription is active but will not renew.
/// </summary>
Inactive = 2,
Ending = 2,
}