a0a0575a99
🚀 Create and publish a Docker image / Detect changes in backend and frontend (push) Successful in 10s
🚀 Create and publish a Docker image / Build & publish backend image (push) Successful in 1m17s
🚀 Create and publish a Docker image / Build & publish frontend image (push) Successful in 12s
🚀 Create and publish a Docker image / Update stack on Portainer (push) Successful in 6s
9 lines
290 B
C#
9 lines
290 B
C#
using UniVerse.Application.DTOs.Notifications;
|
|
|
|
namespace UniVerse.Application.Interfaces;
|
|
|
|
public interface INotificationScheduler
|
|
{
|
|
Task<ScheduledNotificationResponse> ScheduleAsync(NotificationMessage message, DateTimeOffset sendAt, CancellationToken cancellationToken = default);
|
|
}
|