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