using System.Collections.Generic; using Sozsoft.Platform.FileManagement; using Sozsoft.Platform.Identity.Dto; namespace Sozsoft.Platform.Intranet; public class IntranetDashboardDto { public List Events { get; set; } = []; public List Birthdays { get; set; } = []; public List Documents { get; set; } = []; public List Announcements { get; set; } = []; public List Surveys { get; set; } = []; }