mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-30 21:03:17 +00:00
12 lines
297 B
C#
12 lines
297 B
C#
namespace SharpCompress.Common;
|
|
|
|
public class OptionsBase
|
|
{
|
|
/// <summary>
|
|
/// SharpCompress will keep the supplied streams open. Default is true.
|
|
/// </summary>
|
|
public bool LeaveStreamOpen { get; set; } = true;
|
|
|
|
public ArchiveEncoding ArchiveEncoding { get; set; } = new();
|
|
}
|