UpdateNotificationSettingsInput.cs 280 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace WeApp.BaseSystem.Notifications.Dto
  3. {
  4. public class UpdateNotificationSettingsInput
  5. {
  6. public bool ReceiveNotifications { get; set; }
  7. public List<NotificationSubscriptionDto> Notifications { get; set; }
  8. }
  9. }