erp-platform/api/src/Kurs.Platform.Application.Contracts/Intranet/IntranetDashboardDto.cs
2025-10-29 13:20:21 +03:00

16 lines
564 B
C#

using System.Collections.Generic;
using Kurs.Platform.FileManagement;
namespace Kurs.Platform.Intranet;
public class IntranetDashboardDto
{
public List<EventDto> Events { get; set; } = [];
public List<EmployeeDto> Birthdays { get; set; } = [];
public List<VisitorDto> Visitors { get; set; } = [];
public List<ReservationDto> Reservations { get; set; } = [];
public List<TrainingDto> Trainings { get; set; } = [];
public ExpensesDto Expenses { get; set; } = new ExpensesDto();
public List<FileItemDto> Documents { get; set; } = [];
}