using System;
namespace Tango.Telemetry
{
///
/// Specifies the direction in which historical telemetry data should be published.
///
public enum TelemetryHistorySourceDirection
{
///
/// Indicates that historical telemetry should be published in chronological order, from oldest to newest.
///
Ascending,
///
/// Indicates that historical telemetry should be published in reverse chronological order, from newest to oldest.
///
Descending,
}
}