Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/ClientConsoleService/TransferObjects/ConnectionContainer.cs @ 950

Last change on this file since 950 was 950, checked in by kgrading, 15 years ago

bugfixes for #401

File size: 373 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.Serialization;
6
7namespace HeuristicLab.Hive.Client.Core.ClientConsoleService {
8  [DataContract]
9  public class ConnectionContainer {
10    [DataMember]
11    public string IPAdress { get; set; }
12    [DataMember]
13    public int Port { get; set; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.