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