using PKISharp.WACS.Plugins.Base; using PKISharp.WACS.Plugins.Base.Options; using PKISharp.WACS.Services; namespace PKISharp.WACS.Plugins.StorePlugins { [Plugin("e57c70e4-cd60-4ba6-80f6-a41703e21031")] internal class PemFilesOptions : StorePluginOptions { internal const string PluginName = "PemFiles"; public override string Name => PluginName; public override string Description => "PEM encoded files (Apache, nginx, etc.)"; /// /// Path to the .pem directory /// public string? Path { get; set; } /// /// Show details to the user /// /// public override void Show(IInputService input) { base.Show(input); input.Show("Path", Path, level: 1); } } }