using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using CurrieTechnologies.Razor.SweetAlert2; namespace BlazorPages.Tools { public interface ISwalUtils { public Task ShowToast(string message); public Task ShowSwal(string title, string message, SweetAlertIcon icon); } }