Files
sharpcompress/src/SharpCompress/Readers/ReaderOptions.cs
2020-05-23 16:27:55 -07:00

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; }
}
}