Files

25 lines
652 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.SecuROM
2025-09-26 12:09:34 -04:00
{
/// <summary>
/// Represents a single key-length-value tuple in a
/// SecuROM DFA file
/// </summary>
public class DFAEntry
{
/// <summary>
/// Entry name, always 4 ASCII characters
/// </summary>
public string Name { get; set; } = string.Empty;
2025-09-26 12:09:34 -04:00
/// <summary>
/// Length of the value in bytes
/// </summary>
public uint Length { get; set; }
/// <summary>
/// Value of the entry whose length is given by <see cref="Length"/>
2025-09-26 12:09:34 -04:00
/// </summary>
public byte[] Value { get; set; } = [];
2025-09-26 12:09:34 -04:00
}
}