From eacf283fbb0c66895d9fea0626946625a1dc656f Mon Sep 17 00:00:00 2001 From: Stepan Grankin Date: Wed, 20 Dec 2023 09:05:51 +0300 Subject: [PATCH] numbers at NotificationType --- Dodo1000Bot.Models/NotificationType.cs | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Dodo1000Bot.Models/NotificationType.cs b/Dodo1000Bot.Models/NotificationType.cs index 3eba7b9..e918061 100644 --- a/Dodo1000Bot.Models/NotificationType.cs +++ b/Dodo1000Bot.Models/NotificationType.cs @@ -2,16 +2,16 @@ public enum NotificationType { - Custom, - TotalOverall, - TotalAtBrands, - TotalAtCountries, - TotalCountriesAtBrands, - NewCountry, - NewUnit, - OrdersPerMinute, - YearRevenue, - SubscribersCount, - Admin, - Emoji, + Custom = 0, + TotalOverall = 1, + TotalAtBrands = 2, + TotalAtCountries = 3, + TotalCountriesAtBrands = 4, + NewCountry = 5, + NewUnit = 6, + OrdersPerMinute = 7, + YearRevenue = 8, + SubscribersCount = 9, + Admin = 10, + Emoji = 11, } \ No newline at end of file