Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

19 řádky
381 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 Services
  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. }