mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
389 B
C#
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;
|
|
}
|
|
} |