namespace SharpCompress.Common { public class ExtractionOptions { /// /// overwrite target if it exists /// public bool Overwrite {get; set; } /// /// extract with internal directory structure /// public bool ExtractFullPath { get; set; } /// /// preserve file time /// public bool PreserveFileTime { get; set; } /// /// preserve windows file attributes /// public bool PreserveAttributes { get; set; } } }