mirror of
https://github.com/nsnail/dot.git
synced 2025-06-17 21:13:21 +08:00
12 lines
322 B
C#
12 lines
322 B
C#
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
|
|
namespace Dot;
|
|
|
|
internal abstract class OptionBase : CommandSettings, IOption
|
|
{
|
|
[CommandOption("-k|--keep--session")]
|
|
[Description(nameof(Str.KeepSession))]
|
|
[Localization(typeof(Str))]
|
|
[DefaultValue(false)]
|
|
public bool KeepSession { get; set; }
|
|
} |