Files
RedisManager/Commands/InstanceOptions.cs
GuilhermeStrice f37078157d add project
2025-07-09 19:31:34 +01:00

14 lines
348 B
C#

using CommandLine;
namespace RedisManager.Commands
{
/// <summary>
/// Base options for commands that require a Redis instance.
/// </summary>
public class InstanceOptions
{
[Option('i', "instance", Required = true, HelpText = "Name of the Redis instance to use.")]
public string Instance { get; set; }
}
}