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

namespace Tango.Telemetry.Telemetries
{
    public class Wire
    {
        public String Name { get; set; }
        public double Value { get; set; }
    }

    [TelemetryName("Wire", 1)]
    public class TelemetryWire : TelemetryBase
    {
        public List<Wire> Wires { get; set; }

        public TelemetryWire()
        {
            Wires = new List<Wire>();
        }
    }
}