UpdateNotificationSettingsInput.cs 372 B

12345678910111213141516
  1. using Abp.Notifications;
  2. namespace VberZero.AppService.Notifications.Dto;
  3. public class UpdateNotificationSettingsInput
  4. {
  5. public bool ReceiveNotifications { get; set; }
  6. public List<NotificationSubscriptionDto> Notifications { get; set; }
  7. }
  8. public class MsgDto
  9. {
  10. public NotificationSeverity Severity { get; set; }
  11. public string Message { get; set; }
  12. }