From aed05f1eb956788831c89821a736a5bf61a2f677 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Thu, 16 May 2024 13:16:50 +0500 Subject: [PATCH] common: add `PREMIUM_PAUSED` subscription type --- Streetwriters.Common/Enums/SubscriptionType.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Streetwriters.Common/Enums/SubscriptionType.cs b/Streetwriters.Common/Enums/SubscriptionType.cs index a6e638d..09e13fa 100644 --- a/Streetwriters.Common/Enums/SubscriptionType.cs +++ b/Streetwriters.Common/Enums/SubscriptionType.cs @@ -26,6 +26,7 @@ namespace Streetwriters.Common.Enums BETA = 2, PREMIUM = 5, PREMIUM_EXPIRED = 6, - PREMIUM_CANCELED = 7 + PREMIUM_CANCELED = 7, + PREMIUM_PAUSED = 8 } } \ No newline at end of file