Files
Hermes/TorControlLibrary/Responses/RouterDescription.cs
2022-06-11 16:42:18 -04:00

23 lines
602 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TorControlLibrary.Responses
{
public class RouterDescription : CommandResponse
{
public RouterDescription(String nickname)
{
this.NickName = nickname;
}
public Int32 BandwidthObserved { get; set; }
public Int32 BandwidthAverage { get; set; }
public Int32 BandwidthBurst { get; set; }
public TimeSpan Uptime { get; set; }
public String NickName { get; set; }
public ExitPolicy ExitPolicy { get; set; }
}
}