aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/PendingTelemetry.cs
blob: 2be3b1c459533c2a07b2614daae14398f02532da (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
using LiteDB;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Telemetry
{
    public class PendingTelemetry
    {
        [BsonId(true)]
        public int Id { get; set; }
        public DateTime Created { get; set; }
        public DateTime Expires { get; set; }
        public ITelemetry TelemetryObject { get; set; }
        public String Module { get; set; }
        public TelemetrySource Source { get; set; }
        public List<TelemetryPendingDestination> PendingDestinations { get; set; }

        public PendingTelemetry()
        {
            PendingDestinations = new List<TelemetryPendingDestination>();
        }
    }
}