wabbajack/Wabbajack.DTOs/Interventions/ManualBlobDownload.cs
2022-05-18 21:21:38 -06:00

16 lines
389 B
C#

using Wabbajack.Hashing.xxHash64;
using Wabbajack.Paths;
namespace Wabbajack.DTOs.Interventions;
public class ManualBlobDownload : AUserIntervention<Hash>
{
public Archive Archive { get; }
public AbsolutePath Destination { get; }
public ManualBlobDownload(Archive archive, AbsolutePath destination)
{
Archive = archive;
Destination = destination;
}
}