926688cd2e
Backend CI / build-and-test (push) Successful in 51s
Frontend CI / build-and-check (push) Failing after 5m11s
🚀 Create and publish a Docker image / Detect changes in backend and frontend (push) Successful in 14s
🚀 Create and publish a Docker image / Build & publish backend image (push) Successful in 1m20s
🚀 Create and publish a Docker image / Build & publish frontend image (push) Successful in 23s
🚀 Create and publish a Docker image / Update stack on Portainer (push) Successful in 11s
15 lines
429 B
C#
15 lines
429 B
C#
using UniVerse.Application.DTOs.Notifications;
|
|
|
|
namespace UniVerse.Application.Interfaces;
|
|
|
|
public interface INotificationScheduler
|
|
{
|
|
Task<ScheduledNotificationResponse> ScheduleAsync(
|
|
NotificationMessage message,
|
|
DateTimeOffset sendAt,
|
|
string? jobId = null,
|
|
CancellationToken cancellationToken = default);
|
|
|
|
Task CancelAsync(string jobId, CancellationToken cancellationToken = default);
|
|
}
|