public static void SetNotification(string key, string message)
 {
     NotificationContent = new NotificationContent
     {
         Key     = key,
         Message = message
     };
 }
 public static void SetEmpty()
 {
     NotificationContent = null;
 }