namespace SabreTools.Data.Models.XRD
{
public class FileEntry
{
///
/// Sector offset of file in XDVDFS filesystem
///
public uint Offset { get; set; }
///
/// Size of file in bytes
///
public ulong Size { get; set; }
///
/// SHA-1 Hash of file content
///
public byte[] SHA1 { get; set; } = new byte[20];
}
}