mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-26 08:52:20 +00:00
14 lines
390 B
C#
14 lines
390 B
C#
using SharpCompress.Common;
|
|
|
|
namespace SharpCompress.Readers
|
|
{
|
|
public class ReaderOptions : OptionsBase
|
|
{
|
|
/// <summary>
|
|
/// Look for RarArchive (Check for self-extracting archives or cases where RarArchive isn't at the start of the file)
|
|
/// </summary>
|
|
public bool LookForHeader { get; set; }
|
|
|
|
public string? Password { get; set; }
|
|
}
|
|
} |