using System; using System.Collections.Generic; using System.Threading.Tasks; using Wabbajack.DTOs; using Wabbajack.Hashing.xxHash64; namespace Wabbajack.Server.DTOs { public class ValidationData { public Dictionary<(long Game, long ModId, long FileId), string> NexusFiles { get; set; } = new (); public Dictionary<(string PrimaryKeyString, Hash Hash), bool> ArchiveStatus { get; set; } public List ModLists { get; set; } public Dictionary Mirrors { get; set; } public Lazy>> AllowedMirrors { get; set; } public IEnumerable AllAuthoredFiles { get; set; } } }