11 lines
299 B
C#
11 lines
299 B
C#
namespace SPMS.Application.Settings;
|
|
|
|
public class RedisSettings
|
|
{
|
|
public const string SectionName = "Redis";
|
|
|
|
public string ConnectionString { get; set; } = "localhost:6379";
|
|
public string InstanceName { get; set; } = "spms_dev_";
|
|
public int DuplicateTtlHours { get; set; } = 24;
|
|
}
|