Wonky.Client/Wonky.Entity/DTO/ReportInitDto.cs
2022-07-01 17:32:20 +02:00

23 lines
No EOL
501 B
C#

using Wonky.Entity.Models;
using Wonky.Entity.Views;
namespace Wonky.Entity.DTO;
public class ReportInitDto
{
/// <summary>
/// Flag to prevent activity to be added to report
/// </summary>
public bool Closed { get; set; }
/// <summary>
/// Report figures
/// </summary>
public ReportFiguresDto Figures { get; set; }
/// <summary>
/// List of activities for report
/// </summary>
public List<ActivityListItemView> Activities { get; set; }
}