Wonky.Client/Wonky.Entity/DTO/ReportInitDto.cs

23 lines
505 B
C#
Raw Normal View History

2022-06-14 19:00:21 +02:00
using Wonky.Entity.Models;
2022-07-01 17:32:20 +02:00
using Wonky.Entity.Views;
2022-06-14 19:00:21 +02:00
namespace Wonky.Entity.DTO;
public class ReportInitDto
{
2022-07-01 10:02:29 +02:00
/// <summary>
/// Flag to prevent activity to be added to report
/// </summary>
2022-07-02 16:15:28 +02:00
public bool ReportClosed { get; set; }
2022-07-01 10:02:29 +02:00
/// <summary>
/// Report figures
/// </summary>
2022-07-02 16:15:28 +02:00
public ReportFiguresDto ReportData { get; set; }
2022-07-01 10:02:29 +02:00
/// <summary>
/// List of activities for report
/// </summary>
2022-07-02 16:15:28 +02:00
public List<ReportItemView> ReportItems { get; set; }
2022-06-14 19:00:21 +02:00
}