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