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