2021-09-14 03:22:07 +00:00
|
|
|
using System;
|
|
|
|
using System.Text.Json.Serialization;
|
2021-09-27 12:42:46 +00:00
|
|
|
using Wabbajack.DTOs.ServerResponses;
|
2021-09-14 03:22:07 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.DTOs.ModListValidation;
|
|
|
|
|
|
|
|
public class ValidatedArchive
|
2021-09-14 03:22:07 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
public ArchiveStatus Status { get; set; }
|
|
|
|
public Archive Original { get; set; }
|
|
|
|
|
|
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
|
|
public Archive? PatchedFrom { get; set; }
|
2021-09-14 03:22:07 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
|
|
public Uri? PatchUrl { get; set; }
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|