aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/Telemetries/TelemetryLog.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/Telemetries/TelemetryLog.cs')
-rw-r--r--Software/Visual_Studio/Tango.Telemetry/Telemetries/TelemetryLog.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/Telemetries/TelemetryLog.cs b/Software/Visual_Studio/Tango.Telemetry/Telemetries/TelemetryLog.cs
new file mode 100644
index 000000000..c37f6fd29
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Telemetry/Telemetries/TelemetryLog.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Telemetry.Telemetries
+{
+ public class TelemetryLog : TelemetryBase
+ {
+ public String Category { get; set; }
+
+ public String Class { get; set; }
+
+ public String Method { get; set; }
+
+ public int Line { get; set; }
+
+ public String Message { get; set; }
+ }
+}