ApmMetric
using System.Collections.Generic;
namespace Relativity.Transfer
{
public class ApmMetric
{
public string Name { get; set; }
public IDictionary<string, object> CustomData { get; set; }
public ApmMetric()
{
Initialize();
}
private void Initialize()
{
CustomData = new Dictionary<string, object>();
Name = null;
}
}
}