mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
358 B
C#
14 lines
358 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Wabbajack.Server.DTOs;
|
|
|
|
public class UpdateEntry
|
|
{
|
|
[JsonPropertyName("mod_id")] public long ModId { get; set; }
|
|
|
|
[JsonPropertyName("latest_file_update")]
|
|
public long LatestFileUpdate { get; set; }
|
|
|
|
[JsonPropertyName("latest_mod_activity")]
|
|
public long LastestModActivity { get; set; }
|
|
} |