mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-27 01:12:25 +00:00
10 lines
262 B
C#
10 lines
262 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;
|
|
}
|
|
} |