28 строки
720 B
C#
28 строки
720 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="RedisResults.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// </copyright>
|
|
// <summary>
|
|
// Implements class RedisResults.
|
|
// </summary>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace Microsoft.CTStore
|
|
{
|
|
/// <summary>
|
|
/// <c>Redis</c> results
|
|
/// </summary>
|
|
public class RedisResults
|
|
{
|
|
/// <summary>
|
|
/// <c>Redis</c> OK result
|
|
/// </summary>
|
|
public const string OK = "OK";
|
|
|
|
/// <summary>
|
|
/// <c>Redis</c> NOK result
|
|
/// </summary>
|
|
public const string NotOK = "NOK";
|
|
}
|
|
}
|