- using System.Collections.Generic;
- namespace WePlatform.BaseSystem.Notifications.Dto
- {
- public class UpdateNotificationSettingsInput
- {
- public bool ReceiveNotifications { get; set; }
- public List<NotificationSubscriptionDto> Notifications { get; set; }
- }
- }
|