9 lines
234 B
C#
9 lines
234 B
C#
namespace YarpGateway.Config;
|
|
|
|
public class RedisConfig
|
|
{
|
|
public string ConnectionString { get; set; } = "localhost:6379";
|
|
public int Database { get; set; } = 0;
|
|
public string InstanceName { get; set; } = "YarpGateway";
|
|
}
|