9 lines
214 B
C#
9 lines
214 B
C#
|
namespace SiteManagementSystem_SoftwareEngineering_.Model
|
|||
|
{
|
|||
|
public class RedisConfig
|
|||
|
{
|
|||
|
public int RedisDB { get; set; }
|
|||
|
public string RedisConnectionString { get; set; } = null!;
|
|||
|
}
|
|||
|
}
|