forked from Moux23333/FreeSR
9 lines
177 B
C#
9 lines
177 B
C#
|
namespace FreeSR.Shared.Configuration
|
|||
|
{
|
|||
|
public class NetworkConfiguration
|
|||
|
{
|
|||
|
public string Host { get; set; }
|
|||
|
public ushort Port { get; set; }
|
|||
|
}
|
|||
|
}
|