mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
12 lines
258 B
C#
12 lines
258 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Wabbajack.Server.DTOs
|
|
{
|
|
public class MetricResult
|
|
{
|
|
public string SeriesName { get; set; }
|
|
public List<string> Labels { get; set; }
|
|
public List<int> Values { get; set; }
|
|
}
|
|
}
|