49 lines
909 B
C#
49 lines
909 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Net.Sockets;
|
|||
|
|
|||
|
namespace AndroidLIB
|
|||
|
{
|
|||
|
public class AndrComIdent
|
|||
|
{
|
|||
|
private string ip;
|
|||
|
|
|||
|
public string IP
|
|||
|
{
|
|||
|
get { return ip; }
|
|||
|
set { ip = value; }
|
|||
|
}
|
|||
|
private NetworkStream ns;
|
|||
|
|
|||
|
public NetworkStream NetStream
|
|||
|
{
|
|||
|
get { return ns; }
|
|||
|
set { ns = value; }
|
|||
|
}
|
|||
|
private int gwid;
|
|||
|
|
|||
|
public int Gwid
|
|||
|
{
|
|||
|
get { return gwid; }
|
|||
|
set { gwid = value; }
|
|||
|
}
|
|||
|
private int rgwid;
|
|||
|
|
|||
|
public int Rgwid
|
|||
|
{
|
|||
|
get { return rgwid; }
|
|||
|
set { rgwid = value; }
|
|||
|
}
|
|||
|
|
|||
|
private string userID;
|
|||
|
|
|||
|
public string UserID
|
|||
|
{
|
|||
|
get { return userID; }
|
|||
|
set { userID = value; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|