aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/TelemetryHistorySourceDirection.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2025-08-04 01:09:55 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2025-08-04 01:09:55 +0300
commit8bbeffb422e8535c399f1eb76a55fdee5a1c65b6 (patch)
treef200faa0e11c23f9105c3f12e0a6a2ea51832214 /Software/Visual_Studio/Tango.Telemetry/TelemetryHistorySourceDirection.cs
parent0df9f37075dd697ac34f4ed2a2749f62aa27a654 (diff)
downloadTango-8bbeffb422e8535c399f1eb76a55fdee5a1c65b6.tar.gz
Tango-8bbeffb422e8535c399f1eb76a55fdee5a1c65b6.zip
Telemetry JobRuns.
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/TelemetryHistorySourceDirection.cs')
-rw-r--r--Software/Visual_Studio/Tango.Telemetry/TelemetryHistorySourceDirection.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/TelemetryHistorySourceDirection.cs b/Software/Visual_Studio/Tango.Telemetry/TelemetryHistorySourceDirection.cs
new file mode 100644
index 000000000..036176e6f
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Telemetry/TelemetryHistorySourceDirection.cs
@@ -0,0 +1,20 @@
+using System;
+
+namespace Tango.Telemetry
+{
+ /// <summary>
+ /// Specifies the direction in which historical telemetry data should be published.
+ /// </summary>
+ public enum TelemetryHistorySourceDirection
+ {
+ /// <summary>
+ /// Indicates that historical telemetry should be published in chronological order, from oldest to newest.
+ /// </summary>
+ Ascending,
+
+ /// <summary>
+ /// Indicates that historical telemetry should be published in reverse chronological order, from newest to oldest.
+ /// </summary>
+ Descending,
+ }
+} \ No newline at end of file