private MeetupResponse(bool success, string message, FollwGroupView FGView) : base(success, message)
 {
     FollowGroup = FGView;
 }
 public MeetupResponse(FollwGroupView FGView) : this(true, string.Empty, FGView)
 {
 }