mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
442 B
C#
16 lines
442 B
C#
using System;
|
|
|
|
namespace Wabbajack.Networking.NexusApi.DTOs;
|
|
|
|
public class ResponseMetadata
|
|
{
|
|
public int DailyLimit { get; set; }
|
|
public int DailyRemaining { get; set; }
|
|
public DateTime DailyReset { get; set; }
|
|
public int HourlyLimit { get; set; }
|
|
public int HourlyRemaining { get; set; }
|
|
public DateTime HourlyReset { get; set; }
|
|
public double Runtime { get; set; }
|
|
|
|
public bool IsReal { get; set; } = true;
|
|
} |