sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Intranet/IntranetDashboardDto.cs
2026-05-09 00:48:23 +03:00

14 lines
489 B
C#

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