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

22 lines
473 B
C#
Raw Normal View History

2022-06-14 19:00:21 +02:00
using Wonky.Entity.Models;
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-06-14 19:00:21 +02:00
public bool Closed { get; set; }
2022-07-01 10:02:29 +02:00
/// <summary>
/// Report figures
/// </summary>
2022-06-14 19:00:21 +02:00
public ReportFiguresDto Figures { get; set; }
2022-07-01 10:02:29 +02:00
/// <summary>
/// List of activities for report
/// </summary>
public List<ActivityViewReport> Activities { get; set; }
2022-06-14 19:00:21 +02:00
}