9 lines
258 B
C#
9 lines
258 B
C#
namespace YarpGateway.Config;
|
|
|
|
public class RedisConfig
|
|
{
|
|
public string ConnectionString { get; set; } = "81.68.223.70:16379,password=sl52788542";
|
|
public int Database { get; set; } = 0;
|
|
public string InstanceName { get; set; } = "YarpGateway";
|
|
}
|