Files
mtapi/MTApiService/MtConnectionProfile.cs
T
2014-10-31 09:05:52 +02:00

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; }
}
}