mwt-ds/Experimentation/MetricResult.cs

16 строки
275 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Experimentation
{
public class MetricResult
{
public string Name { get; set; }
public float Value { get; set; }
}
}