mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
20 lines
407 B
C#
Executable File
20 lines
407 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
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; }
|
|
}
|
|
}
|