using SharpCompress.Common; namespace SharpCompress.Readers { public class ReaderOptions : OptionsBase { /// /// Look for RarArchive (Check for self-extracting archives or cases where RarArchive isn't at the start of the file) /// public bool LookForHeader { get; set; } public string Password { get; set; } } }