mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
476 B
C#
17 lines
476 B
C#
using System;
|
|
using System.Text.Json.Serialization;
|
|
using Wabbajack.DTOs.ServerResponses;
|
|
|
|
namespace Wabbajack.DTOs.ModListValidation;
|
|
|
|
public class ValidatedArchive
|
|
{
|
|
public ArchiveStatus Status { get; set; }
|
|
public Archive Original { get; set; }
|
|
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
public Archive? PatchedFrom { get; set; }
|
|
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
public Uri? PatchUrl { get; set; }
|
|
} |