Files
SabreTools.Serialization/SabreTools.Data.Models/XRD/FileEntry.cs
2026-04-19 09:04:25 -04:00

21 lines
483 B
C#

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