Commit 59ece8d6 authored by Nick Craver's avatar Nick Craver

Cleanup: IDatabase* alignment

This will make maintenace and compares easy for adding sync/async operations. Next up: docs completion and syncing over.
parent c9ee9ab9
using System;
namespace StackExchange.Redis
{
/// <summary>
/// Describes a value/expiry pair
/// </summary>
public struct RedisValueWithExpiry
{
internal RedisValueWithExpiry(RedisValue value, TimeSpan? expiry)
{
Value = value;
Expiry = expiry;
}
/// <summary>
/// The expiry of this record
/// </summary>
public TimeSpan? Expiry { get; }
/// <summary>
/// The value of this record
/// </summary>
public RedisValue Value { get; }
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment