wabbajack/Wabbajack.Networking.NexusApi/DTOs/ResponseMetadata.cs

16 lines
442 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using System;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Networking.NexusApi.DTOs;
public class ResponseMetadata
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
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; }
2021-09-27 12:42:46 +00:00
2021-10-23 16:51:17 +00:00
public bool IsReal { get; set; } = true;
2021-09-27 12:42:46 +00:00
}