mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2025-07-25 21:04:01 +00:00
15 lines
377 B
C#
15 lines
377 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Wabbajack.Server.DTOs
|
|
{
|
|
public class NexusUpdateEntry
|
|
{
|
|
[JsonProperty("mod_id")]
|
|
public long ModId { get; set; }
|
|
[JsonProperty("latest_file_update")]
|
|
public long LatestFileUpdate { get; set; }
|
|
[JsonProperty("latest_mod_activity")]
|
|
public long LastestModActivity { get; set; }
|
|
}
|
|
}
|