7 lines
168 B
C#
7 lines
168 B
C#
namespace HanaToolbox.Services.Interfaces;
|
|
|
|
public interface INotificationService
|
|
{
|
|
Task SendAsync(string title, string message, CancellationToken ct = default);
|
|
}
|