using System.Collections.Generic;
namespace NHSE.Core
{
///
/// Contains the for a .
///
public sealed class FileHashDetails
{
///
/// Name of the File that these apply to.
///
public readonly string FileName;
///
/// Expected file size of the .
///
public readonly uint FileSize;
///
/// Hash specs that are done in this file.
///
public readonly IReadOnlyList HashRegions;
public FileHashDetails(string fileName, uint fileSize, IReadOnlyList regions)
{
FileName = fileName;
FileSize = fileSize;
HashRegions = regions;
}
}
}