Initial project commit
This commit is contained in:
22
TorControlLibrary/Responses/RouterDescription.cs
Normal file
22
TorControlLibrary/Responses/RouterDescription.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user