blob: 1ef37bca028a3a27d635945021a5aa6732f4545c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.FSE.Common.BugReporting;
using Tango.Insights;
namespace Tango.FSE.Common.Insights
{
public class InsightsPackage
{
public List<InsightsReadyFrame> Frames { get; set; }
public List<InsightsReadyEvent> Events { get; set; }
public List<InsightsReadyStatus> Statuses { get; set; }
public List<InsightsReadyApplicationException> ApplicationExceptions { get; set; }
public List<InsightsReadyBug> Bugs { get; set; }
public List<InsightsReadyUpdate> Updates { get; set; }
public InsightsPackage()
{
Frames = new List<InsightsReadyFrame>();
Events = new List<InsightsReadyEvent>();
Statuses = new List<InsightsReadyStatus>();
Bugs = new List<InsightsReadyBug>();
ApplicationExceptions = new List<InsightsReadyApplicationException>();
Updates = new List<InsightsReadyUpdate>();
}
}
}
|