2020-01-09 00:04:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2020-01-14 23:33:50 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2020-01-09 00:04:57 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Wabbajack.BuildServer.GraphQL;
|
2020-04-05 21:15:01 +00:00
|
|
|
|
using Wabbajack.BuildServer.Model.Models;
|
2020-01-09 00:04:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.BuildServer.Models
|
|
|
|
|
{
|
|
|
|
|
public class Metric
|
|
|
|
|
{
|
2020-01-30 13:07:16 +00:00
|
|
|
|
public DateTime Timestamp { get; set; }
|
|
|
|
|
public string Action { get; set; }
|
|
|
|
|
public string Subject { get; set; }
|
|
|
|
|
public string MetricsKey { get; set; }
|
2020-01-09 00:04:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|