mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2025-07-25 12:54:41 +00:00
13 lines
322 B
C#
13 lines
322 B
C#
using System;
|
|
using Microsoft.Extensions.Primitives;
|
|
|
|
namespace Wabbajack.Server.DTOs;
|
|
|
|
public class Metric
|
|
{
|
|
public DateTime Timestamp { get; set; }
|
|
public string Action { get; set; }
|
|
public string Subject { get; set; }
|
|
public string MetricsKey { get; set; }
|
|
public string UserAgent { get; set; }
|
|
} |