Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/JobStorrage/JobStorrageInfo.cs @ 1219

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

implementation done (#493)

File size: 361 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Hive.Client.Core.JobStorrage {
7  public class JobStorrageInfo {
8    public String ServerIP { get; set; }
9    public long ServerPort { get; set; }
10    public DateTime TimeFinished { get; set; }
11    public long JobID { get; set; }
12  }
13}
Note: See TracBrowser for help on using the repository browser.