b0a4a6d259
🚀 Create and publish a Docker image / Detect changes in backend and frontend (push) Successful in 9s
🚀 Create and publish a Docker image / Build & publish backend image (push) Successful in 26s
🚀 Create and publish a Docker image / Build & publish frontend image (push) Successful in 19s
🚀 Create and publish a Docker image / Update stack on Portainer (push) Successful in 8s
Реализовал хранение, получение и отметку прочитанными пользовательских уведомлений. Обновил фронтенд для отображения и управления уведомлениями в профиле студента.
43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
namespace UniVerse.Application.DTOs.Notifications;
|
|
|
|
public static class NotificationChannels
|
|
{
|
|
public const string Email = "email";
|
|
}
|
|
|
|
public record NotificationMessage(
|
|
string Channel,
|
|
string Recipient,
|
|
string Subject,
|
|
string Body,
|
|
string? RecipientName = null,
|
|
IReadOnlyDictionary<string, string>? Metadata = null);
|
|
|
|
public record SendNotificationRequest(
|
|
string Channel,
|
|
string Recipient,
|
|
string Subject,
|
|
string Body,
|
|
string? RecipientName = null,
|
|
IReadOnlyDictionary<string, string>? Metadata = null);
|
|
|
|
public record ScheduleNotificationRequest(
|
|
string Channel,
|
|
string Recipient,
|
|
string Subject,
|
|
string Body,
|
|
DateTimeOffset SendAt,
|
|
string? RecipientName = null,
|
|
IReadOnlyDictionary<string, string>? Metadata = null);
|
|
|
|
public record ScheduledNotificationResponse(string JobId, DateTimeOffset SendAt);
|
|
|
|
public record UserNotificationDto(
|
|
int Id,
|
|
string Type,
|
|
string Title,
|
|
string Body,
|
|
bool IsRead,
|
|
DateTime CreatedAt
|
|
);
|