wabbajack/Wabbajack.Server/GlobalInformation.cs

11 lines
343 B
C#
Raw Normal View History

using System;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Server;
public class GlobalInformation
{
2021-10-23 16:51:17 +00:00
public TimeSpan NexusAPIPollRate = TimeSpan.FromMinutes(15);
public TimeSpan NexusRSSPollRate = TimeSpan.FromMinutes(1);
public DateTime LastNexusSyncUTC { get; set; }
public TimeSpan TimeSinceLastNexusSync => DateTime.UtcNow - LastNexusSyncUTC;
}