public BellumGensNotificationWrapper(TeamInvite invite)
 {
     notification = new BellumGensNotification()
     {
         title    = $"You have been invited to join team {invite.TeamInfo.TeamName}",
         icon     = invite.TeamInfo.TeamAvatar,
         data     = invite.TeamId,
         renotify = true,
         actions  = new List <BellumGensNotificationAction>()
         {
             new BellumGensNotificationAction()
             {
                 action = "viewteam",
                 title  = "View team"
             }
         }
     };
 }
 public BellumGensNotificationWrapper(StrategyComment comment)
 {
     notification = new BellumGensNotification()
     {
         title    = $"New comments on your strategy",
         icon     = comment.UserAvatar,
         data     = comment.StratId,
         renotify = true,
         actions  = new List <BellumGensNotificationAction>()
         {
             new BellumGensNotificationAction()
             {
                 action = "viewstrategy",
                 title  = "View comments"
             }
         }
     };
 }
 public BellumGensNotificationWrapper(TeamApplication application)
 {
     notification = new BellumGensNotification()
     {
         title    = $"{application.User.UserName} has applied to join {application.Team.TeamName}",
         icon     = application.User.AvatarFull,
         data     = application.ApplicantId,
         renotify = true,
         actions  = new List <BellumGensNotificationAction>()
         {
             new BellumGensNotificationAction()
             {
                 action = "viewuser",
                 title  = "View player"
             }
         }
     };
 }
 public BellumGensNotificationWrapper(TeamInvite invite, NotificationState state)
 {
     if (state == NotificationState.Accepted)
     {
         notification = new BellumGensNotification()
         {
             title    = $"{invite.InvitedUser.UserName} has accepted your invitation to join {invite.TeamInfo.TeamName}!",
             icon     = invite.InvitedUser.AvatarFull,
             data     = invite.InvitedUserId,
             renotify = true,
             actions  = new List <BellumGensNotificationAction>()
             {
                 new BellumGensNotificationAction()
                 {
                     action = "viewuser",
                     title  = "View player"
                 }
             }
         };
     }
 }
 public BellumGensNotificationWrapper(TeamApplication application, NotificationState state)
 {
     if (state == NotificationState.Accepted)
     {
         notification = new BellumGensNotification()
         {
             title    = $"You have been accepted to join team {application.Team.TeamName}",
             icon     = application.Team.TeamAvatar,
             data     = application.TeamId,
             renotify = true,
             actions  = new List <BellumGensNotificationAction>()
             {
                 new BellumGensNotificationAction()
                 {
                     action = "viewteam",
                     title  = "View team"
                 }
             }
         };
     }
 }