/// <summary>
 /// プロフィールバナーの削除
 /// </summary>
 /// <returns></returns>
 public async Task RemoveProfileBanner()
 {
     if (await AccountTokens.RemoveProfileBannerAsync(this.TokenSuffix))
     {
         CommonMethods.Notify("プロフィールバナーの削除成功", NotificationType.Success);
     }
     else
     {
         CommonMethods.Notify("プロフィールバナーの削除失敗", NotificationType.Error);
     }
 }