mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
443 B
C#
17 lines
443 B
C#
using System;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Wabbajack.BuildServer.Models
|
|
{
|
|
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; }
|
|
}
|
|
}
|