/// <summary>
        /// 获取渠道的ID
        /// <para>参考:https://developer.android.google.cn/reference/android/app/NotificationChannel?hl=en#public-constructors </para>
        /// </summary>
        /// <param name="notificationChannelType"></param>
        /// <returns></returns>
        protected virtual string GetChannelId(TNotificationChannelType notificationChannelType)
        {
            var valueInt = Enum2.ConvertToInt32(notificationChannelType);

            return("chan_" + valueInt);
        }
 protected virtual int GetNotifyId(TNotificationType notificationType)
 => Enum2.ConvertToInt32(notificationType);