Files
mtapi/MTApiService/MtConnectionProfile.cs
T

16 lines
317 B
C#
Raw Normal View History

2014-10-31 09:05:52 +02:00
namespace MTApiService
{
public class MtConnectionProfile
{
public MtConnectionProfile(string name)
{
Name = name;
}
public string Name { get; private set; }
public string Host { get; set; }
public int Port { get; set; }
}
}