- using Abp.Notifications;
- namespace VberZero.AppService.Notifications.Dto;
- public class UpdateNotificationSettingsInput
- {
- public bool ReceiveNotifications { get; set; }
- public List<NotificationSubscriptionDto> Notifications { get; set; }
- }
- public class MsgDto
- {
- public NotificationSeverity Severity { get; set; }
- public string Message { get; set; }
- }
|