using System;
namespace GitHub.Actions.WorkflowParser.ObjectTemplating
{
///
/// Tracks telemetry data during workflow parsing.
///
public sealed class Telemetry
{
///
/// Gets or sets the count of YAML anchors encountered during parsing.
///
public Int32 YamlAnchors { get; set; }
///
/// Gets or sets the count of YAML aliases encountered during parsing.
///
public Int32 YamlAliases { get; set; }
}
}