2026-05-05 17:59:30 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using Sozsoft.Platform.FileManagement;
|
|
|
|
|
|
using Sozsoft.Platform.Identity.Dto;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.Platform.Intranet;
|
|
|
|
|
|
|
|
|
|
|
|
public class IntranetDashboardDto
|
|
|
|
|
|
{
|
2026-05-06 14:48:44 +00:00
|
|
|
|
public List<EventDto> Events { get; set; } = [];
|
2026-05-05 17:59:30 +00:00
|
|
|
|
public List<UserInfoViewModel> Birthdays { get; set; } = [];
|
|
|
|
|
|
public List<FileItemDto> Documents { get; set; } = [];
|
|
|
|
|
|
public List<AnnouncementDto> Announcements { get; set; } = [];
|
|
|
|
|
|
public List<SurveyDto> Surveys { get; set; } = [];
|
|
|
|
|
|
}
|