blob: aecf7e6c6521bbe86197cc3d9b64c687636cff0b [file]
using Microsoft.Extensions.Options;
namespace Apache.Geode.Session
{
public class GeodeSessionStateCacheOptions : IOptions<GeodeSessionStateCacheOptions>
{
public string RegionName { get; set; }
public string Host { get; set; }
public int Port { get; set; }
GeodeSessionStateCacheOptions IOptions<GeodeSessionStateCacheOptions>.Value
{
get { return this; }
}
}
}