Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

19 righe
389 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using CurrieTechnologies.Razor.SweetAlert2;
  6. namespace BlazorPages.Tools
  7. {
  8. public interface ISwalUtils
  9. {
  10. public Task<SweetAlertResult> ShowToast(string message);
  11. public Task<SweetAlertResult> ShowSwal(string title, string message, SweetAlertIcon icon);
  12. }
  13. }