using System; using System.Collections.Generic; using System.Text; namespace Sensor.Gateway.DataXfer { public class Neighbor { double unixts; Int32 id, node1, node2; Int16 rssi, lqi; public Neighbor(double unixts, Int32 id, Int32 node1, Int32 node2, Int16 rssi, Int16 lqi) { this.unixts = unixts; this.id = id; this.node1 = node1; this.node2 = node2; this.rssi = rssi; this.lqi = lqi; } public double Unixts { get { return unixts; } set { unixts = value; } } public Int32 ID { get { return id; } set { id = value; } } public Int32 Node1 { get { return node1; } set { node1 = value; } } public Int32 Node2 { get { return node2; } set { node2 = value; } } public Int16 RSSI { get { return rssi; } set { rssi = value; } } public Int16 LQI { get { return lqi; } set { lqi = value; } } } }