Files
pokerth/console/src/ServerSettings.cs
T

54 lines
665 B
C#
Raw Normal View History

2008-12-19 10:26:02 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace pokerth_console
{
class ServerSettings
{
public ServerSettings()
{
}
public string IPv4Address
{
get
{
return m_ipv4Address;
}
set
{
m_ipv4Address = value;
}
}
public string IPv6Address
{
get
{
return m_ipv6Address;
}
set
{
m_ipv6Address = value;
}
}
public int Port
{
get
{
return m_port;
}
set
{
m_port = value;
}
}
private string m_ipv4Address = "";
private string m_ipv6Address = "";
private int m_port = 0;
}
}