mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
16 lines
317 B
C#
Executable File
16 lines
317 B
C#
Executable File
|
|
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; }
|
|
}
|
|
}
|