mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +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; }
|
|||
|
}
|
|||
|
}
|