18 lines
376 B
C#
18 lines
376 B
C#
namespace Passer.Control.Core {
|
|
|
|
public class RemoteParticipant {
|
|
public string ipAddress = "0.0.0.0";
|
|
public int port = 0;
|
|
|
|
public byte networkId;
|
|
|
|
public RemoteParticipant() {
|
|
|
|
}
|
|
public RemoteParticipant(string ipAddress, int port) {
|
|
this.ipAddress = ipAddress;
|
|
this.port = port;
|
|
}
|
|
}
|
|
|
|
} |