mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-16 12:53:39 +00:00
Clean up legacy control classes and code
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
//Legacy but needed incase there are still instances stored in this way
|
||||
namespace qController.QItems
|
||||
{
|
||||
public class QInstance
|
||||
{
|
||||
public string name { get; set; }
|
||||
public string address { get; set; }
|
||||
public QInstance()
|
||||
{
|
||||
|
||||
}
|
||||
public QInstance(string tName, string tAddress)
|
||||
{
|
||||
name = tName;
|
||||
address = tAddress;
|
||||
}
|
||||
public bool IsReachable()
|
||||
{
|
||||
return qController.Helpers.IPHelper.IsReachable(address);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user