mirror of
https://github.com/sphildreth/roadie
synced 2024-11-14 16:37:25 +00:00
10 lines
No EOL
186 B
C#
10 lines
No EOL
186 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Configuration
|
|
{
|
|
[Serializable]
|
|
public class RedisCache : IRedisCache
|
|
{
|
|
public string ConnectionString { get; set; }
|
|
}
|
|
} |