namespace Tango.Telemetry.Reporting { /// /// Represents an aggregated summary of telemetry publish results for a specific destination, /// tracking the number of successful, failed, postponed, and unavailable attempts. /// public class DestinationStatusSummary { /// /// Gets or sets the name of the telemetry destination (e.g., IoTHub, LocalStorage). /// public string DestinationName { get; set; } /// /// Gets or sets the number of telemetry packages successfully published to this destination. /// public int Passed { get; set; } /// /// Gets or sets the number of telemetry packages that failed to publish to this destination. /// public int Failed { get; set; } /// /// Gets or sets the number of telemetry packages that were postponed for this destination, /// typically due to retry logic or temporary conditions. /// public int Postponed { get; set; } /// /// Gets or sets the number of telemetry packages that could not be published due to the destination being unavailable. /// public int Unavailable { get; set; } } }