add project

This commit is contained in:
GuilhermeStrice
2025-07-09 19:31:34 +01:00
parent 8d2e88edf4
commit f37078157d
44 changed files with 7680 additions and 0 deletions

View File

@ -0,0 +1,13 @@
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; }
}
}