- using System.Collections.Generic;
- namespace WeOnlineApp.BaseSystem.Notifications.Dto
- {
- public class GetNotificationSettingsOutput
- {
- public bool ReceiveNotifications { get; set; }
- public List<NotificationSubscriptionWithDisplayNameDto> Notifications { get; set; }
- }
- }
|