/// Represents a GeoRadius command and its options.
/// </summary>
publicclassGeoRadius
{
/// <summary>
/// The Radius size of this GeoRadius command.
/// </summary>
publicdoubleRadius{get;}
/// <summary>
/// The center point to base the search.
/// </summary>
publicGeoPositionGeoPosition{get;}
/// <summary>
/// The key to use.
/// </summary>
publicRedisKeyKey{get;}
/// <summary>
/// The unit to return distance measurments in.
/// </summary>
publicGeoUnitUnit{get;}
/// <summary>
/// The possible options for the GeoRadius command
/// </summary>
publicGeoRadiusOptionsGeoRadiusOptions{get;}
/// <summary>
/// The maximum number of results to return.
/// However note that internally the command needs to perform an effort proportional to the number of items matching the specified area, so to query very large areas with a very small COUNT option may be slow even if just a few results are returned.