Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/3.2/JobStorage/JobStorageInfo.cs @ 1530

Last change on this file since 1530 was 1449, checked in by svonolfe, 15 years ago

Refactored DAL (now using GUIDs as IDs instead of longs) (#527)

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