mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
342 B
C#
14 lines
342 B
C#
using System;
|
|
|
|
namespace Wabbajack.DTOs.ServerResponses;
|
|
|
|
|
|
public class MetricResult
|
|
{
|
|
public string Action { get; set; }
|
|
public string Subject { get; set; }
|
|
public string GroupingSubject { get; set; }
|
|
public ulong MetricKey { get; set; }
|
|
public string UserAgent { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
} |