17 lines
307 B
C#
17 lines
307 B
C#
|
namespace Mirea.Api.Dto.Common;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Specifies the types of caching mechanisms available.
|
|||
|
/// </summary>
|
|||
|
public enum CacheType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Memcached caching type.
|
|||
|
/// </summary>
|
|||
|
Memcached,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Redis caching type.
|
|||
|
/// </summary>
|
|||
|
Redis
|
|||
|
}
|